├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── docs ├── Mac与Window的尺寸调整.md ├── Spine.md ├── UI自动构造.md ├── XML布局.md ├── readme.md ├── 图片.md ├── 场景管理.md ├── 基础布局.md ├── 按钮.md ├── 文件选择器.md ├── 文本.md ├── 线程使用.md ├── 网络请求.md └── 资源管理器.md ├── example.png ├── example ├── .idea │ ├── .gitignore │ ├── example.iml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── .vscode │ └── settings.json ├── Assets │ ├── DroidSansFallbackFull.ttf │ ├── FetterDescAtlas.png │ ├── FetterDescAtlas.xml │ ├── Model.FBX │ ├── PolygonWestern_Texture_01.png │ ├── Skeleton01.png │ ├── Sword01.png │ ├── XmlScene.xml │ ├── btn_LvSe.png │ ├── cude.fbx │ ├── data.json │ ├── dj_wenzi_fly.FBX │ ├── img.png │ ├── map │ │ └── Tree01 │ │ │ └── treeTexture.png │ ├── mc1043.mp3 │ ├── mc1043.ogg │ ├── monkey.fbx │ ├── rock.hmd │ ├── rockTexture.jpg │ ├── rw_huocai_01.FBX │ ├── rw_huocai_01_walk.FBX │ ├── slk.atlas │ ├── slk.json │ ├── slk.png │ ├── spineboy.atlas │ ├── spineboy.json │ ├── spineboy.png │ ├── test.xml │ ├── test1.atlas │ ├── test1.json │ ├── test1.png │ ├── tree.hmd │ └── treeTexture.png ├── readme.md ├── src │ ├── AutoXMLScene.hx │ ├── BatchScene.hx │ ├── InputScene.hx │ ├── ListViewScene.hx │ ├── Main.hx │ ├── MainScene.hx │ ├── Object3DScene.hx │ ├── PageScene.hx │ ├── SpineScene.hx │ ├── World.hx │ ├── XMLScene.hx │ └── macro │ │ └── ShaderTest.hx ├── zyheaps.2hxml └── zyheaps.xml ├── haxelib.json ├── include.xml ├── run.n ├── src └── zygame │ ├── core │ ├── Start.hx │ └── platform │ │ └── JsStart.hx │ ├── display │ ├── BaseTextInput.hx │ ├── Box.hx │ ├── Button.hx │ ├── DefalutItemRenderer.hx │ ├── DownListView.hx │ ├── FPSDebug.hx │ ├── Graphics.hx │ ├── HBox.hx │ ├── HDividedBox.hx │ ├── Image.hx │ ├── ItemRenderer.hx │ ├── Label.hx │ ├── ListView.hx │ ├── LoaderXMLScene.hx │ ├── Progress.hx │ ├── Quad.hx │ ├── Scene.hx │ ├── SceneBatch.hx │ ├── ScrollView.hx │ ├── Spine.hx │ ├── TextInput.hx │ ├── VBox.hx │ ├── VDividedBox.hx │ ├── base │ │ ├── BaseDividedBox.hx │ │ ├── BaseGraphics.hx │ │ ├── DragDividedRenderer.hx │ │ ├── IBatchDisplayObject.hx │ │ ├── IDisplayObject.hx │ │ ├── IEventListener.hx │ │ ├── IInteractiveObject.hx │ │ ├── IItemRenderer.hx │ │ ├── IListView.hx │ │ ├── IObject.hx │ │ └── IRefresher.hx │ ├── batch │ │ ├── BButton.hx │ │ ├── BImage.hx │ │ └── BObject.hx │ ├── data │ │ ├── ArrayCollection.hx │ │ ├── ButtonSkin.hx │ │ └── ObjectRecycler.hx │ └── text │ │ └── glyphme │ │ ├── GlyphMe.hx │ │ ├── TrueTypeFont.hx │ │ └── TrueTypeFontFile.hx │ ├── events │ ├── Event.hx │ ├── EventListener.hx │ ├── EventTools.hx │ └── EventType.hx │ ├── layout │ ├── DividedHorizontalLayout.hx │ ├── DividedVerticalLayout.hx │ ├── FlowLayout.hx │ ├── FlowListLayout.hx │ ├── HorizontalLayout.hx │ ├── HorizontalListLayout.hx │ ├── ILayout.hx │ ├── Layout.hx │ ├── ListLayout.hx │ ├── VerticalLayout.hx │ ├── VerticalListLayout.hx │ ├── VirualFlowListLayout.hx │ ├── VirualHorizontalListLayout.hx │ └── VirualVerticalListLayout.hx │ ├── loader │ ├── LoaderAssets.hx │ └── parser │ │ ├── AssetsType.hx │ │ ├── AtlasParser.hx │ │ ├── BaseParser.hx │ │ ├── BitmapDataParser.hx │ │ ├── BytesDataParser.hx │ │ ├── HMDParser.hx │ │ ├── JSONDataParser.hx │ │ ├── SoundParser.hx │ │ ├── SpineAtlasParser.hx │ │ └── XMLDataParser.hx │ ├── macro │ ├── AssetsProject.hx │ ├── AutoXMLBuilder.hx │ └── Uninline.hx │ ├── net │ └── HttpRequest.hx │ ├── res │ ├── AssetsBuilder.hx │ ├── Builder.hx │ ├── FontBuilder.hx │ ├── SpineTextureAtlas.hx │ ├── XMLAtlas.hx │ └── XMLBuilder.hx │ ├── skins │ ├── BaseSkin.hx │ ├── RectangleSkin.hx │ └── SkinsBuilder.hx │ └── utils │ ├── Assets.hx │ ├── AssetsUtils.hx │ ├── CEFloat.hx │ ├── FileDialog.hx │ ├── FpsUtils.hx │ ├── FrameEngine.hx │ ├── IteratorUtils.hx │ ├── LayoutTools.hx │ ├── Lib.hx │ ├── MaxRectsBinPack.hx │ ├── Rectangle.hx │ ├── ScaleUtils.hx │ ├── SceneManager.hx │ ├── StringUtils.hx │ ├── TimeRuntime.hx │ └── hl │ ├── AssetsTools.hx │ ├── BytesLoader.hx │ ├── ILoader.hx │ ├── Log.hx │ ├── NativeTools.hx │ ├── Thread.hx │ ├── mac │ └── FileDialog.hx │ └── win │ └── FileDialog.hx ├── test └── VSCodeMain.hx ├── tools ├── build.hxml ├── executable │ └── mac-executable │ │ ├── Main.hx │ │ └── build.hxml ├── hdll │ ├── glyphme │ │ ├── build.hxml │ │ ├── glyphme.hdll │ │ └── stb │ │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ ├── config.yml │ │ │ │ └── feature_request.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── ci-fuzz.yml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── glyphme.cpp │ │ │ ├── stb_c_lexer.h │ │ │ ├── stb_connected_components.h │ │ │ ├── stb_divide.h │ │ │ ├── stb_ds.h │ │ │ ├── stb_dxt.h │ │ │ ├── stb_easy_font.h │ │ │ ├── stb_herringbone_wang_tile.h │ │ │ ├── stb_hexwave.h │ │ │ ├── stb_image.h │ │ │ ├── stb_image_resize.h │ │ │ ├── stb_image_write.h │ │ │ ├── stb_include.h │ │ │ ├── stb_leakcheck.h │ │ │ ├── stb_rect_pack.h │ │ │ ├── stb_sprintf.h │ │ │ ├── stb_textedit.h │ │ │ ├── stb_tilemap_editor.h │ │ │ ├── stb_truetype.h │ │ │ ├── stb_vorbis.c │ │ │ └── stb_voxel_render.h │ ├── iostools │ │ └── iosheaps.mm │ ├── mactools │ │ ├── build.hxml │ │ ├── iostools.o │ │ └── macheaps.mm │ └── wintools │ │ ├── build.hxml │ │ └── win.c ├── src │ ├── Tools.hx │ ├── lime │ │ └── tools │ │ │ ├── AIRHelper.hx │ │ │ ├── AndroidHelper.hx │ │ │ ├── ApplicationData.hx │ │ │ ├── Architecture.hx │ │ │ ├── Asset.hx │ │ │ ├── AssetEncoding.hx │ │ │ ├── AssetHelper.hx │ │ │ ├── AssetManifest.hx │ │ │ ├── AssetType.hx │ │ │ ├── CLICommand.hx │ │ │ ├── CLIHelper.hx │ │ │ ├── CPPHelper.hx │ │ │ ├── CSHelper.hx │ │ │ ├── Command.hx │ │ │ ├── CommandHelper.hx │ │ │ ├── ConfigData.hx │ │ │ ├── ConfigHelper.hx │ │ │ ├── Dependency.hx │ │ │ ├── DeploymentHelper.hx │ │ │ ├── ElectronHelper.hx │ │ │ ├── FlashHelper.hx │ │ │ ├── GUID.hx │ │ │ ├── HTML5Helper.hx │ │ │ ├── HXProject.hx │ │ │ ├── IOSHelper.hx │ │ │ ├── Icon.hx │ │ │ ├── IconHelper.hx │ │ │ ├── ImageHelper.hx │ │ │ ├── JavaHelper.hx │ │ │ ├── Keystore.hx │ │ │ ├── LaunchStoryboard.hx │ │ │ ├── Library.hx │ │ │ ├── MetaData.hx │ │ │ ├── ModuleData.hx │ │ │ ├── ModuleHelper.hx │ │ │ ├── NekoHelper.hx │ │ │ ├── NodeJSHelper.hx │ │ │ ├── Orientation.hx │ │ │ ├── Platform.hx │ │ │ ├── PlatformTarget.hx │ │ │ ├── PlatformTargetMain.hx │ │ │ ├── PlatformType.hx │ │ │ ├── ProjectHelper.hx │ │ │ ├── ProjectXMLParser.hx │ │ │ ├── SplashScreen.hx │ │ │ ├── TVOSHelper.hx │ │ │ ├── TizenHelper.hx │ │ │ ├── WindowData.hx │ │ │ └── XCodeHelper.hx │ ├── platform │ │ ├── AllPlatform.hx │ │ ├── Android.hx │ │ ├── BasePlatform.hx │ │ ├── Html5.hx │ │ ├── Ios.hx │ │ ├── Mac.hx │ │ ├── Wechat.hx │ │ └── Window.hx │ ├── project │ │ └── ProjectHXMLParser.hx │ └── utils │ │ ├── AssetHelperExt.hx │ │ └── FixHashLinkNative.hx └── templates │ ├── android-cpp-libs │ ├── hashlink.zip │ ├── libjpeg-turbo.zip │ ├── libuv.zip │ ├── openal-nativetools.zip │ ├── openal-soft.zip │ ├── readme.md │ ├── sdl2.zip │ └── stb.zip │ ├── android │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakeLists2.txt │ │ │ ├── jni.c │ │ │ └── readme.md │ │ │ ├── java │ │ │ ├── org │ │ │ │ ├── haxe │ │ │ │ │ └── HashLinkActivity.java │ │ │ │ └── libsdl │ │ │ │ │ └── app │ │ │ │ │ ├── HIDDevice.java │ │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ │ ├── SDL.java │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ ├── SDLAudioManager.java │ │ │ │ │ ├── SDLControllerManager.java │ │ │ │ │ └── SDLSurface.java │ │ │ └── readme.md │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_background.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ └── strings.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ ├── readme.md │ └── settings.gradle │ ├── html5 │ └── index.html │ ├── ios-cpp-libs │ ├── IDZPrecompiledOgg.zip │ ├── IDZPrecompiledVorbis.zip │ ├── SDL.zip │ ├── hashlink.zip │ ├── stb.zip │ └── turbojpeg.zip │ ├── ios-project │ └── App.xcodeproj │ │ ├── TemplateIcon.icns │ │ ├── TemplateInfo.plist │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ ├── rainy.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── tang.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── App.xcscheme │ │ └── xcuserdata │ │ └── rainy.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── ios │ ├── App │ │ └── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 29.png │ │ │ ├── 40.png │ │ │ ├── 50.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ ├── Configuration │ │ ├── Config.xcconfig │ │ └── Pathes.xcconfig │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Icon.png │ ├── Info.plist │ ├── Makefile │ ├── README.md │ ├── base.hxml │ ├── native │ │ └── iosheaps.mm │ └── shims │ │ └── efx.c │ ├── mac │ └── App.app │ │ └── Contents │ │ ├── Entitlements.plist │ │ ├── Frameworks │ │ ├── fmt.hdll │ │ ├── glyphme.hdll │ │ ├── iostools.hdll │ │ ├── libSDL2-2.0.0.dylib │ │ ├── libhl.dylib │ │ ├── libmbedcrypto.0.dylib │ │ ├── libmbedtls.10.dylib │ │ ├── libmbedx509.0.dylib │ │ ├── libogg.0.dylib │ │ ├── libopenal.1.dylib │ │ ├── libpng16.16.dylib │ │ ├── libturbojpeg.0.dylib │ │ ├── libuv.1.dylib │ │ ├── libvorbis.0.dylib │ │ ├── libvorbisfile.3.dylib │ │ ├── libz.1.dylib │ │ ├── licenses │ │ │ └── licenses │ │ │ │ ├── SDL.txt │ │ │ │ ├── bungee.font.txt │ │ │ │ ├── gluten.font.txt │ │ │ │ ├── hashlink.txt │ │ │ │ ├── haxe.txt │ │ │ │ ├── heaps.txt │ │ │ │ ├── incompetech.txt │ │ │ │ ├── libjpeg-turbo.txt │ │ │ │ ├── libogg.txt │ │ │ │ ├── libpng.txt │ │ │ │ ├── libuv.txt │ │ │ │ ├── libvorbis.txt │ │ │ │ ├── openal.txt │ │ │ │ └── zlib.txt │ │ ├── mysql.hdll │ │ ├── openal.hdll │ │ ├── sdl.hdll │ │ ├── sqlite.hdll │ │ ├── ssl.hdll │ │ ├── ui.hdll │ │ └── uv.hdll │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── Main │ │ ├── hl │ │ └── hlboot.dat │ │ └── Resources │ │ ├── icon.icns │ │ └── tmp.iconset │ │ └── icon_512x512@2x.png │ ├── project │ ├── Source │ │ └── Main.hx │ └── zyheaps.xml │ ├── wechat │ ├── game.js │ ├── game.json │ ├── index.js │ ├── project.config.json │ └── zygameui-dom.js │ ├── window-old │ ├── Contents │ │ └── Frameworks │ │ │ ├── OpenAL32.dll │ │ │ ├── SDL2.dll │ │ │ ├── directx.hdll │ │ │ ├── filedialog.exe │ │ │ ├── fmt.hdll │ │ │ ├── glyphme.hdll │ │ │ ├── hl.exe │ │ │ ├── libhl.dll │ │ │ ├── msvcr120.dll │ │ │ ├── mysql.hdll │ │ │ ├── openal.hdll │ │ │ ├── sdl.hdll │ │ │ ├── sqlite.hdll │ │ │ ├── ssl.hdll │ │ │ ├── ui.hdll │ │ │ └── uv.hdll │ ├── main.c │ └── main.exe │ └── window │ ├── Contents │ └── Frameworks │ │ ├── OpenAL32.dll │ │ ├── SDL2.dll │ │ ├── directx.hdll │ │ ├── directx.lib │ │ ├── dx12.hdll │ │ ├── dx12.lib │ │ ├── filedialog.exe │ │ ├── fmt.hdll │ │ ├── fmt.lib │ │ ├── glyphme.hdll │ │ ├── hl.exe │ │ ├── hl.lib │ │ ├── include │ │ ├── hl.h │ │ ├── hlc.h │ │ └── hlc_main.c │ │ ├── libhl.dll │ │ ├── libhl.lib │ │ ├── mysql.hdll │ │ ├── mysql.lib │ │ ├── openal.hdll │ │ ├── openal.lib │ │ ├── sdl.hdll │ │ ├── sdl.lib │ │ ├── sqlite.hdll │ │ ├── sqlite.lib │ │ ├── ssl.hdll │ │ ├── ssl.lib │ │ ├── ui.hdll │ │ ├── ui.lib │ │ ├── uv.hdll │ │ └── uv.lib │ ├── main.c │ └── main.exe └── vscodo.hxml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/README.md -------------------------------------------------------------------------------- /docs/Mac与Window的尺寸调整.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/Mac与Window的尺寸调整.md -------------------------------------------------------------------------------- /docs/Spine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/Spine.md -------------------------------------------------------------------------------- /docs/UI自动构造.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/UI自动构造.md -------------------------------------------------------------------------------- /docs/XML布局.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/XML布局.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/图片.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/图片.md -------------------------------------------------------------------------------- /docs/场景管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/场景管理.md -------------------------------------------------------------------------------- /docs/基础布局.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/基础布局.md -------------------------------------------------------------------------------- /docs/按钮.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/按钮.md -------------------------------------------------------------------------------- /docs/文件选择器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/文件选择器.md -------------------------------------------------------------------------------- /docs/文本.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/文本.md -------------------------------------------------------------------------------- /docs/线程使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/线程使用.md -------------------------------------------------------------------------------- /docs/网络请求.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/网络请求.md -------------------------------------------------------------------------------- /docs/资源管理器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/docs/资源管理器.md -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example.png -------------------------------------------------------------------------------- /example/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/.idea/example.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/.idea/example.iml -------------------------------------------------------------------------------- /example/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/.idea/modules.xml -------------------------------------------------------------------------------- /example/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/.idea/vcs.xml -------------------------------------------------------------------------------- /example/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/.idea/workspace.xml -------------------------------------------------------------------------------- /example/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/.vscode/settings.json -------------------------------------------------------------------------------- /example/Assets/DroidSansFallbackFull.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/DroidSansFallbackFull.ttf -------------------------------------------------------------------------------- /example/Assets/FetterDescAtlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/FetterDescAtlas.png -------------------------------------------------------------------------------- /example/Assets/FetterDescAtlas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/FetterDescAtlas.xml -------------------------------------------------------------------------------- /example/Assets/Model.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/Model.FBX -------------------------------------------------------------------------------- /example/Assets/PolygonWestern_Texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/PolygonWestern_Texture_01.png -------------------------------------------------------------------------------- /example/Assets/Skeleton01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/Skeleton01.png -------------------------------------------------------------------------------- /example/Assets/Sword01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/Sword01.png -------------------------------------------------------------------------------- /example/Assets/XmlScene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/XmlScene.xml -------------------------------------------------------------------------------- /example/Assets/btn_LvSe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/btn_LvSe.png -------------------------------------------------------------------------------- /example/Assets/cude.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/cude.fbx -------------------------------------------------------------------------------- /example/Assets/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "version":1111 3 | } -------------------------------------------------------------------------------- /example/Assets/dj_wenzi_fly.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/dj_wenzi_fly.FBX -------------------------------------------------------------------------------- /example/Assets/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/img.png -------------------------------------------------------------------------------- /example/Assets/map/Tree01/treeTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/map/Tree01/treeTexture.png -------------------------------------------------------------------------------- /example/Assets/mc1043.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/mc1043.mp3 -------------------------------------------------------------------------------- /example/Assets/mc1043.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/mc1043.ogg -------------------------------------------------------------------------------- /example/Assets/monkey.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/monkey.fbx -------------------------------------------------------------------------------- /example/Assets/rock.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/rock.hmd -------------------------------------------------------------------------------- /example/Assets/rockTexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/rockTexture.jpg -------------------------------------------------------------------------------- /example/Assets/rw_huocai_01.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/rw_huocai_01.FBX -------------------------------------------------------------------------------- /example/Assets/rw_huocai_01_walk.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/rw_huocai_01_walk.FBX -------------------------------------------------------------------------------- /example/Assets/slk.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/slk.atlas -------------------------------------------------------------------------------- /example/Assets/slk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/slk.json -------------------------------------------------------------------------------- /example/Assets/slk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/slk.png -------------------------------------------------------------------------------- /example/Assets/spineboy.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/spineboy.atlas -------------------------------------------------------------------------------- /example/Assets/spineboy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/spineboy.json -------------------------------------------------------------------------------- /example/Assets/spineboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/spineboy.png -------------------------------------------------------------------------------- /example/Assets/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/test.xml -------------------------------------------------------------------------------- /example/Assets/test1.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/test1.atlas -------------------------------------------------------------------------------- /example/Assets/test1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/test1.json -------------------------------------------------------------------------------- /example/Assets/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/test1.png -------------------------------------------------------------------------------- /example/Assets/tree.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/tree.hmd -------------------------------------------------------------------------------- /example/Assets/treeTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/Assets/treeTexture.png -------------------------------------------------------------------------------- /example/readme.md: -------------------------------------------------------------------------------- 1 | ## 测试项目 2 | ```shell 3 | haxelib run zyheaps test html5 4 | ``` -------------------------------------------------------------------------------- /example/src/AutoXMLScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/AutoXMLScene.hx -------------------------------------------------------------------------------- /example/src/BatchScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/BatchScene.hx -------------------------------------------------------------------------------- /example/src/InputScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/InputScene.hx -------------------------------------------------------------------------------- /example/src/ListViewScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/ListViewScene.hx -------------------------------------------------------------------------------- /example/src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/Main.hx -------------------------------------------------------------------------------- /example/src/MainScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/MainScene.hx -------------------------------------------------------------------------------- /example/src/Object3DScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/Object3DScene.hx -------------------------------------------------------------------------------- /example/src/PageScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/PageScene.hx -------------------------------------------------------------------------------- /example/src/SpineScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/SpineScene.hx -------------------------------------------------------------------------------- /example/src/World.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/World.hx -------------------------------------------------------------------------------- /example/src/XMLScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/XMLScene.hx -------------------------------------------------------------------------------- /example/src/macro/ShaderTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/src/macro/ShaderTest.hx -------------------------------------------------------------------------------- /example/zyheaps.2hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/zyheaps.2hxml -------------------------------------------------------------------------------- /example/zyheaps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/example/zyheaps.xml -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/haxelib.json -------------------------------------------------------------------------------- /include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/include.xml -------------------------------------------------------------------------------- /run.n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/run.n -------------------------------------------------------------------------------- /src/zygame/core/Start.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/core/Start.hx -------------------------------------------------------------------------------- /src/zygame/core/platform/JsStart.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/core/platform/JsStart.hx -------------------------------------------------------------------------------- /src/zygame/display/BaseTextInput.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/BaseTextInput.hx -------------------------------------------------------------------------------- /src/zygame/display/Box.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/Box.hx -------------------------------------------------------------------------------- /src/zygame/display/Button.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/Button.hx -------------------------------------------------------------------------------- /src/zygame/display/DefalutItemRenderer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/DefalutItemRenderer.hx -------------------------------------------------------------------------------- /src/zygame/display/DownListView.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/DownListView.hx -------------------------------------------------------------------------------- /src/zygame/display/FPSDebug.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/FPSDebug.hx -------------------------------------------------------------------------------- /src/zygame/display/Graphics.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/Graphics.hx -------------------------------------------------------------------------------- /src/zygame/display/HBox.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/HBox.hx -------------------------------------------------------------------------------- /src/zygame/display/HDividedBox.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/HDividedBox.hx -------------------------------------------------------------------------------- /src/zygame/display/Image.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/Image.hx -------------------------------------------------------------------------------- /src/zygame/display/ItemRenderer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/ItemRenderer.hx -------------------------------------------------------------------------------- /src/zygame/display/Label.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/Label.hx -------------------------------------------------------------------------------- /src/zygame/display/ListView.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/ListView.hx -------------------------------------------------------------------------------- /src/zygame/display/LoaderXMLScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/LoaderXMLScene.hx -------------------------------------------------------------------------------- /src/zygame/display/Progress.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/Progress.hx -------------------------------------------------------------------------------- /src/zygame/display/Quad.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/Quad.hx -------------------------------------------------------------------------------- /src/zygame/display/Scene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/Scene.hx -------------------------------------------------------------------------------- /src/zygame/display/SceneBatch.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/SceneBatch.hx -------------------------------------------------------------------------------- /src/zygame/display/ScrollView.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/ScrollView.hx -------------------------------------------------------------------------------- /src/zygame/display/Spine.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/Spine.hx -------------------------------------------------------------------------------- /src/zygame/display/TextInput.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/TextInput.hx -------------------------------------------------------------------------------- /src/zygame/display/VBox.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/VBox.hx -------------------------------------------------------------------------------- /src/zygame/display/VDividedBox.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/VDividedBox.hx -------------------------------------------------------------------------------- /src/zygame/display/base/BaseDividedBox.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/base/BaseDividedBox.hx -------------------------------------------------------------------------------- /src/zygame/display/base/BaseGraphics.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/base/BaseGraphics.hx -------------------------------------------------------------------------------- /src/zygame/display/base/DragDividedRenderer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/base/DragDividedRenderer.hx -------------------------------------------------------------------------------- /src/zygame/display/base/IBatchDisplayObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/base/IBatchDisplayObject.hx -------------------------------------------------------------------------------- /src/zygame/display/base/IDisplayObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/base/IDisplayObject.hx -------------------------------------------------------------------------------- /src/zygame/display/base/IEventListener.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/base/IEventListener.hx -------------------------------------------------------------------------------- /src/zygame/display/base/IInteractiveObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/base/IInteractiveObject.hx -------------------------------------------------------------------------------- /src/zygame/display/base/IItemRenderer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/base/IItemRenderer.hx -------------------------------------------------------------------------------- /src/zygame/display/base/IListView.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/base/IListView.hx -------------------------------------------------------------------------------- /src/zygame/display/base/IObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/base/IObject.hx -------------------------------------------------------------------------------- /src/zygame/display/base/IRefresher.hx: -------------------------------------------------------------------------------- 1 | package zygame.display.base; 2 | 3 | /** 4 | * 刷新器实现 5 | */ 6 | interface IRefresher { 7 | public function update(dt:Float):Void; 8 | } 9 | -------------------------------------------------------------------------------- /src/zygame/display/batch/BButton.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/batch/BButton.hx -------------------------------------------------------------------------------- /src/zygame/display/batch/BImage.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/batch/BImage.hx -------------------------------------------------------------------------------- /src/zygame/display/batch/BObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/batch/BObject.hx -------------------------------------------------------------------------------- /src/zygame/display/data/ArrayCollection.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/data/ArrayCollection.hx -------------------------------------------------------------------------------- /src/zygame/display/data/ButtonSkin.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/data/ButtonSkin.hx -------------------------------------------------------------------------------- /src/zygame/display/data/ObjectRecycler.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/data/ObjectRecycler.hx -------------------------------------------------------------------------------- /src/zygame/display/text/glyphme/GlyphMe.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/text/glyphme/GlyphMe.hx -------------------------------------------------------------------------------- /src/zygame/display/text/glyphme/TrueTypeFont.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/text/glyphme/TrueTypeFont.hx -------------------------------------------------------------------------------- /src/zygame/display/text/glyphme/TrueTypeFontFile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/display/text/glyphme/TrueTypeFontFile.hx -------------------------------------------------------------------------------- /src/zygame/events/Event.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/events/Event.hx -------------------------------------------------------------------------------- /src/zygame/events/EventListener.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/events/EventListener.hx -------------------------------------------------------------------------------- /src/zygame/events/EventTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/events/EventTools.hx -------------------------------------------------------------------------------- /src/zygame/events/EventType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/events/EventType.hx -------------------------------------------------------------------------------- /src/zygame/layout/DividedHorizontalLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/DividedHorizontalLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/DividedVerticalLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/DividedVerticalLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/FlowLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/FlowLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/FlowListLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/FlowListLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/HorizontalLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/HorizontalLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/HorizontalListLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/HorizontalListLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/ILayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/ILayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/Layout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/Layout.hx -------------------------------------------------------------------------------- /src/zygame/layout/ListLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/ListLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/VerticalLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/VerticalLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/VerticalListLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/VerticalListLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/VirualFlowListLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/VirualFlowListLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/VirualHorizontalListLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/VirualHorizontalListLayout.hx -------------------------------------------------------------------------------- /src/zygame/layout/VirualVerticalListLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/layout/VirualVerticalListLayout.hx -------------------------------------------------------------------------------- /src/zygame/loader/LoaderAssets.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/LoaderAssets.hx -------------------------------------------------------------------------------- /src/zygame/loader/parser/AssetsType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/parser/AssetsType.hx -------------------------------------------------------------------------------- /src/zygame/loader/parser/AtlasParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/parser/AtlasParser.hx -------------------------------------------------------------------------------- /src/zygame/loader/parser/BaseParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/parser/BaseParser.hx -------------------------------------------------------------------------------- /src/zygame/loader/parser/BitmapDataParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/parser/BitmapDataParser.hx -------------------------------------------------------------------------------- /src/zygame/loader/parser/BytesDataParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/parser/BytesDataParser.hx -------------------------------------------------------------------------------- /src/zygame/loader/parser/HMDParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/parser/HMDParser.hx -------------------------------------------------------------------------------- /src/zygame/loader/parser/JSONDataParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/parser/JSONDataParser.hx -------------------------------------------------------------------------------- /src/zygame/loader/parser/SoundParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/parser/SoundParser.hx -------------------------------------------------------------------------------- /src/zygame/loader/parser/SpineAtlasParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/parser/SpineAtlasParser.hx -------------------------------------------------------------------------------- /src/zygame/loader/parser/XMLDataParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/loader/parser/XMLDataParser.hx -------------------------------------------------------------------------------- /src/zygame/macro/AssetsProject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/macro/AssetsProject.hx -------------------------------------------------------------------------------- /src/zygame/macro/AutoXMLBuilder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/macro/AutoXMLBuilder.hx -------------------------------------------------------------------------------- /src/zygame/macro/Uninline.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/macro/Uninline.hx -------------------------------------------------------------------------------- /src/zygame/net/HttpRequest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/net/HttpRequest.hx -------------------------------------------------------------------------------- /src/zygame/res/AssetsBuilder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/res/AssetsBuilder.hx -------------------------------------------------------------------------------- /src/zygame/res/Builder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/res/Builder.hx -------------------------------------------------------------------------------- /src/zygame/res/FontBuilder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/res/FontBuilder.hx -------------------------------------------------------------------------------- /src/zygame/res/SpineTextureAtlas.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/res/SpineTextureAtlas.hx -------------------------------------------------------------------------------- /src/zygame/res/XMLAtlas.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/res/XMLAtlas.hx -------------------------------------------------------------------------------- /src/zygame/res/XMLBuilder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/res/XMLBuilder.hx -------------------------------------------------------------------------------- /src/zygame/skins/BaseSkin.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/skins/BaseSkin.hx -------------------------------------------------------------------------------- /src/zygame/skins/RectangleSkin.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/skins/RectangleSkin.hx -------------------------------------------------------------------------------- /src/zygame/skins/SkinsBuilder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/skins/SkinsBuilder.hx -------------------------------------------------------------------------------- /src/zygame/utils/Assets.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/Assets.hx -------------------------------------------------------------------------------- /src/zygame/utils/AssetsUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/AssetsUtils.hx -------------------------------------------------------------------------------- /src/zygame/utils/CEFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/CEFloat.hx -------------------------------------------------------------------------------- /src/zygame/utils/FileDialog.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/FileDialog.hx -------------------------------------------------------------------------------- /src/zygame/utils/FpsUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/FpsUtils.hx -------------------------------------------------------------------------------- /src/zygame/utils/FrameEngine.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/FrameEngine.hx -------------------------------------------------------------------------------- /src/zygame/utils/IteratorUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/IteratorUtils.hx -------------------------------------------------------------------------------- /src/zygame/utils/LayoutTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/LayoutTools.hx -------------------------------------------------------------------------------- /src/zygame/utils/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/Lib.hx -------------------------------------------------------------------------------- /src/zygame/utils/MaxRectsBinPack.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/MaxRectsBinPack.hx -------------------------------------------------------------------------------- /src/zygame/utils/Rectangle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/Rectangle.hx -------------------------------------------------------------------------------- /src/zygame/utils/ScaleUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/ScaleUtils.hx -------------------------------------------------------------------------------- /src/zygame/utils/SceneManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/SceneManager.hx -------------------------------------------------------------------------------- /src/zygame/utils/StringUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/StringUtils.hx -------------------------------------------------------------------------------- /src/zygame/utils/TimeRuntime.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/TimeRuntime.hx -------------------------------------------------------------------------------- /src/zygame/utils/hl/AssetsTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/hl/AssetsTools.hx -------------------------------------------------------------------------------- /src/zygame/utils/hl/BytesLoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/hl/BytesLoader.hx -------------------------------------------------------------------------------- /src/zygame/utils/hl/ILoader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/hl/ILoader.hx -------------------------------------------------------------------------------- /src/zygame/utils/hl/Log.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/hl/Log.hx -------------------------------------------------------------------------------- /src/zygame/utils/hl/NativeTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/hl/NativeTools.hx -------------------------------------------------------------------------------- /src/zygame/utils/hl/Thread.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/hl/Thread.hx -------------------------------------------------------------------------------- /src/zygame/utils/hl/mac/FileDialog.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/hl/mac/FileDialog.hx -------------------------------------------------------------------------------- /src/zygame/utils/hl/win/FileDialog.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/src/zygame/utils/hl/win/FileDialog.hx -------------------------------------------------------------------------------- /test/VSCodeMain.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/test/VSCodeMain.hx -------------------------------------------------------------------------------- /tools/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/build.hxml -------------------------------------------------------------------------------- /tools/executable/mac-executable/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/executable/mac-executable/Main.hx -------------------------------------------------------------------------------- /tools/executable/mac-executable/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/executable/mac-executable/build.hxml -------------------------------------------------------------------------------- /tools/hdll/glyphme/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/build.hxml -------------------------------------------------------------------------------- /tools/hdll/glyphme/glyphme.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/glyphme.hdll -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/.github/workflows/ci-fuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/.github/workflows/ci-fuzz.yml -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/.travis.yml -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/LICENSE -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/README.md -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/glyphme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/glyphme.cpp -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_c_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_c_lexer.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_connected_components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_connected_components.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_divide.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_ds.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_dxt.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_easy_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_easy_font.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_herringbone_wang_tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_herringbone_wang_tile.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_hexwave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_hexwave.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_image.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_image_resize.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_image_write.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_include.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_leakcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_leakcheck.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_rect_pack.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_sprintf.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_textedit.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_tilemap_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_tilemap_editor.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_truetype.h -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_vorbis.c -------------------------------------------------------------------------------- /tools/hdll/glyphme/stb/stb_voxel_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/glyphme/stb/stb_voxel_render.h -------------------------------------------------------------------------------- /tools/hdll/iostools/iosheaps.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/iostools/iosheaps.mm -------------------------------------------------------------------------------- /tools/hdll/mactools/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/mactools/build.hxml -------------------------------------------------------------------------------- /tools/hdll/mactools/iostools.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/mactools/iostools.o -------------------------------------------------------------------------------- /tools/hdll/mactools/macheaps.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/mactools/macheaps.mm -------------------------------------------------------------------------------- /tools/hdll/wintools/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/wintools/build.hxml -------------------------------------------------------------------------------- /tools/hdll/wintools/win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/hdll/wintools/win.c -------------------------------------------------------------------------------- /tools/src/Tools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/Tools.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/AIRHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/AIRHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/AndroidHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/AndroidHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/ApplicationData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/ApplicationData.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/Architecture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/Architecture.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/Asset.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/Asset.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/AssetEncoding.hx: -------------------------------------------------------------------------------- 1 | package lime.tools; 2 | 3 | enum AssetEncoding 4 | { 5 | NONE; 6 | BASE64; 7 | } 8 | -------------------------------------------------------------------------------- /tools/src/lime/tools/AssetHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/AssetHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/AssetManifest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/AssetManifest.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/AssetType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/AssetType.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/CLICommand.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/CLICommand.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/CLIHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/CLIHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/CPPHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/CPPHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/CSHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/CSHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/Command.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/Command.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/CommandHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/CommandHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/ConfigData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/ConfigData.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/ConfigHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/ConfigHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/Dependency.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/Dependency.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/DeploymentHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/DeploymentHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/ElectronHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/ElectronHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/FlashHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/FlashHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/GUID.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/GUID.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/HTML5Helper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/HTML5Helper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/HXProject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/HXProject.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/IOSHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/IOSHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/Icon.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/Icon.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/IconHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/IconHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/ImageHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/ImageHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/JavaHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/JavaHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/Keystore.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/Keystore.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/LaunchStoryboard.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/LaunchStoryboard.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/Library.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/Library.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/MetaData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/MetaData.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/ModuleData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/ModuleData.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/ModuleHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/ModuleHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/NekoHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/NekoHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/NodeJSHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/NodeJSHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/Orientation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/Orientation.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/Platform.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/Platform.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/PlatformTarget.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/PlatformTarget.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/PlatformTargetMain.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/PlatformTargetMain.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/PlatformType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/PlatformType.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/ProjectHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/ProjectHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/ProjectXMLParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/ProjectXMLParser.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/SplashScreen.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/SplashScreen.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/TVOSHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/TVOSHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/TizenHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/TizenHelper.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/WindowData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/WindowData.hx -------------------------------------------------------------------------------- /tools/src/lime/tools/XCodeHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/lime/tools/XCodeHelper.hx -------------------------------------------------------------------------------- /tools/src/platform/AllPlatform.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/platform/AllPlatform.hx -------------------------------------------------------------------------------- /tools/src/platform/Android.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/platform/Android.hx -------------------------------------------------------------------------------- /tools/src/platform/BasePlatform.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/platform/BasePlatform.hx -------------------------------------------------------------------------------- /tools/src/platform/Html5.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/platform/Html5.hx -------------------------------------------------------------------------------- /tools/src/platform/Ios.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/platform/Ios.hx -------------------------------------------------------------------------------- /tools/src/platform/Mac.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/platform/Mac.hx -------------------------------------------------------------------------------- /tools/src/platform/Wechat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/platform/Wechat.hx -------------------------------------------------------------------------------- /tools/src/platform/Window.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/platform/Window.hx -------------------------------------------------------------------------------- /tools/src/project/ProjectHXMLParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/project/ProjectHXMLParser.hx -------------------------------------------------------------------------------- /tools/src/utils/AssetHelperExt.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/utils/AssetHelperExt.hx -------------------------------------------------------------------------------- /tools/src/utils/FixHashLinkNative.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/src/utils/FixHashLinkNative.hx -------------------------------------------------------------------------------- /tools/templates/android-cpp-libs/hashlink.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android-cpp-libs/hashlink.zip -------------------------------------------------------------------------------- /tools/templates/android-cpp-libs/libjpeg-turbo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android-cpp-libs/libjpeg-turbo.zip -------------------------------------------------------------------------------- /tools/templates/android-cpp-libs/libuv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android-cpp-libs/libuv.zip -------------------------------------------------------------------------------- /tools/templates/android-cpp-libs/openal-nativetools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android-cpp-libs/openal-nativetools.zip -------------------------------------------------------------------------------- /tools/templates/android-cpp-libs/openal-soft.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android-cpp-libs/openal-soft.zip -------------------------------------------------------------------------------- /tools/templates/android-cpp-libs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android-cpp-libs/readme.md -------------------------------------------------------------------------------- /tools/templates/android-cpp-libs/sdl2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android-cpp-libs/sdl2.zip -------------------------------------------------------------------------------- /tools/templates/android-cpp-libs/stb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android-cpp-libs/stb.zip -------------------------------------------------------------------------------- /tools/templates/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/build.gradle -------------------------------------------------------------------------------- /tools/templates/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/cpp/CMakeLists2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/cpp/CMakeLists2.txt -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/cpp/jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/cpp/jni.c -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/cpp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/cpp/readme.md -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/org/haxe/HashLinkActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/org/haxe/HashLinkActivity.java -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/org/libsdl/app/HIDDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/org/libsdl/app/HIDDevice.java -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/org/libsdl/app/HIDDeviceBLESteamController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/org/libsdl/app/HIDDeviceBLESteamController.java -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/org/libsdl/app/HIDDeviceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/org/libsdl/app/HIDDeviceManager.java -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/org/libsdl/app/SDL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/org/libsdl/app/SDL.java -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/org/libsdl/app/SDLActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/org/libsdl/app/SDLActivity.java -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/org/libsdl/app/SDLAudioManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/org/libsdl/app/SDLAudioManager.java -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/org/libsdl/app/SDLControllerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/org/libsdl/app/SDLControllerManager.java -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/org/libsdl/app/SDLSurface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/org/libsdl/app/SDLSurface.java -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/java/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/java/readme.md -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/drawable-v24/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/drawable-v24/ic_launcher_background.xml -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /tools/templates/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /tools/templates/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/build.gradle -------------------------------------------------------------------------------- /tools/templates/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/gradle.properties -------------------------------------------------------------------------------- /tools/templates/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /tools/templates/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /tools/templates/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/gradlew -------------------------------------------------------------------------------- /tools/templates/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/gradlew.bat -------------------------------------------------------------------------------- /tools/templates/android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/local.properties -------------------------------------------------------------------------------- /tools/templates/android/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/readme.md -------------------------------------------------------------------------------- /tools/templates/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/android/settings.gradle -------------------------------------------------------------------------------- /tools/templates/html5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/html5/index.html -------------------------------------------------------------------------------- /tools/templates/ios-cpp-libs/IDZPrecompiledOgg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-cpp-libs/IDZPrecompiledOgg.zip -------------------------------------------------------------------------------- /tools/templates/ios-cpp-libs/IDZPrecompiledVorbis.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-cpp-libs/IDZPrecompiledVorbis.zip -------------------------------------------------------------------------------- /tools/templates/ios-cpp-libs/SDL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-cpp-libs/SDL.zip -------------------------------------------------------------------------------- /tools/templates/ios-cpp-libs/hashlink.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-cpp-libs/hashlink.zip -------------------------------------------------------------------------------- /tools/templates/ios-cpp-libs/stb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-cpp-libs/stb.zip -------------------------------------------------------------------------------- /tools/templates/ios-cpp-libs/turbojpeg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-cpp-libs/turbojpeg.zip -------------------------------------------------------------------------------- /tools/templates/ios-project/App.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-project/App.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /tools/templates/ios-project/App.xcodeproj/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-project/App.xcodeproj/TemplateInfo.plist -------------------------------------------------------------------------------- /tools/templates/ios-project/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-project/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tools/templates/ios-project/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-project/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tools/templates/ios-project/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-project/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tools/templates/ios-project/App.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-project/App.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /tools/templates/ios-project/App.xcodeproj/project.xcworkspace/xcuserdata/rainy.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-project/App.xcodeproj/project.xcworkspace/xcuserdata/rainy.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /tools/templates/ios-project/App.xcodeproj/project.xcworkspace/xcuserdata/tang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-project/App.xcodeproj/project.xcworkspace/xcuserdata/tang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /tools/templates/ios-project/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-project/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /tools/templates/ios-project/App.xcodeproj/xcuserdata/rainy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios-project/App.xcodeproj/xcuserdata/rainy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/App/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tools/templates/ios/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /tools/templates/ios/Configuration/Pathes.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/Configuration/Pathes.xcconfig -------------------------------------------------------------------------------- /tools/templates/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /tools/templates/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/Default.png -------------------------------------------------------------------------------- /tools/templates/ios/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/Icon.png -------------------------------------------------------------------------------- /tools/templates/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/Info.plist -------------------------------------------------------------------------------- /tools/templates/ios/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/Makefile -------------------------------------------------------------------------------- /tools/templates/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/README.md -------------------------------------------------------------------------------- /tools/templates/ios/base.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/base.hxml -------------------------------------------------------------------------------- /tools/templates/ios/native/iosheaps.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/native/iosheaps.mm -------------------------------------------------------------------------------- /tools/templates/ios/shims/efx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/ios/shims/efx.c -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Entitlements.plist -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/fmt.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/fmt.hdll -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/glyphme.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/glyphme.hdll -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/iostools.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/iostools.hdll -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libSDL2-2.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libSDL2-2.0.0.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libhl.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libhl.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libmbedcrypto.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libmbedcrypto.0.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libmbedtls.10.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libmbedtls.10.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libmbedx509.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libmbedx509.0.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libogg.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libogg.0.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libopenal.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libopenal.1.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libpng16.16.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libpng16.16.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libturbojpeg.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libturbojpeg.0.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libuv.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libuv.1.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libvorbis.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libvorbis.0.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libvorbisfile.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libvorbisfile.3.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/libz.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/libz.1.dylib -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/SDL.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/bungee.font.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/bungee.font.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/gluten.font.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/gluten.font.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/hashlink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/hashlink.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/haxe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/haxe.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/heaps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/heaps.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/incompetech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/incompetech.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/libjpeg-turbo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/libjpeg-turbo.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/libogg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/libogg.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/libpng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/libpng.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/libuv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/libuv.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/libvorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/libvorbis.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/openal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/openal.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/licenses/licenses/zlib.txt -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/mysql.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/mysql.hdll -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/openal.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/openal.hdll -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/sdl.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/sdl.hdll -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/sqlite.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/sqlite.hdll -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/ssl.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/ssl.hdll -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/ui.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/ui.hdll -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Frameworks/uv.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Frameworks/uv.hdll -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Info.plist -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/MacOS/Main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/MacOS/Main -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/MacOS/hl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/MacOS/hl -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/MacOS/hlboot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/MacOS/hlboot.dat -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /tools/templates/mac/App.app/Contents/Resources/tmp.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/mac/App.app/Contents/Resources/tmp.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /tools/templates/project/Source/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/project/Source/Main.hx -------------------------------------------------------------------------------- /tools/templates/project/zyheaps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/project/zyheaps.xml -------------------------------------------------------------------------------- /tools/templates/wechat/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/wechat/game.js -------------------------------------------------------------------------------- /tools/templates/wechat/game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/wechat/game.json -------------------------------------------------------------------------------- /tools/templates/wechat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/wechat/index.js -------------------------------------------------------------------------------- /tools/templates/wechat/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/wechat/project.config.json -------------------------------------------------------------------------------- /tools/templates/wechat/zygameui-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/wechat/zygameui-dom.js -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/OpenAL32.dll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/SDL2.dll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/directx.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/directx.hdll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/filedialog.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/filedialog.exe -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/fmt.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/fmt.hdll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/glyphme.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/glyphme.hdll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/hl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/hl.exe -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/libhl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/libhl.dll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/msvcr120.dll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/mysql.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/mysql.hdll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/openal.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/openal.hdll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/sdl.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/sdl.hdll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/sqlite.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/sqlite.hdll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/ssl.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/ssl.hdll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/ui.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/ui.hdll -------------------------------------------------------------------------------- /tools/templates/window-old/Contents/Frameworks/uv.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/Contents/Frameworks/uv.hdll -------------------------------------------------------------------------------- /tools/templates/window-old/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/main.c -------------------------------------------------------------------------------- /tools/templates/window-old/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window-old/main.exe -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/OpenAL32.dll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/SDL2.dll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/directx.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/directx.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/directx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/directx.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/dx12.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/dx12.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/dx12.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/dx12.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/filedialog.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/filedialog.exe -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/fmt.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/fmt.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/fmt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/fmt.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/glyphme.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/glyphme.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/hl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/hl.exe -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/hl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/hl.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/include/hl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/include/hl.h -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/include/hlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/include/hlc.h -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/include/hlc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/include/hlc_main.c -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/libhl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/libhl.dll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/libhl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/libhl.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/mysql.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/mysql.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/mysql.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/mysql.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/openal.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/openal.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/openal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/openal.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/sdl.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/sdl.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/sdl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/sdl.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/sqlite.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/sqlite.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/sqlite.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/sqlite.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/ssl.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/ssl.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/ssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/ssl.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/ui.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/ui.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/ui.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/ui.lib -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/uv.hdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/uv.hdll -------------------------------------------------------------------------------- /tools/templates/window/Contents/Frameworks/uv.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/Contents/Frameworks/uv.lib -------------------------------------------------------------------------------- /tools/templates/window/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/main.c -------------------------------------------------------------------------------- /tools/templates/window/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/tools/templates/window/main.exe -------------------------------------------------------------------------------- /vscodo.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainyt/zyheaps/HEAD/vscodo.hxml --------------------------------------------------------------------------------