├── .buildpath ├── .cocos-project.json ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.ltk.core.refactoring.prefs ├── LICENSE ├── README.md ├── bytecode ├── Barrier.lua ├── Food.lua ├── G.lua ├── GameLayer.lua ├── GameOver.lua ├── GameScene.lua ├── HeartBar.lua ├── HomeLayer.lua ├── HomeScene.lua ├── MapLevel.lua ├── MapSelectLayer.lua ├── MapSelectScene.lua ├── Selector.lua ├── Snake.lua ├── SnakeNode.lua └── main.lua ├── config.json ├── frameworks └── runtime-src │ ├── Classes │ ├── AdManager.cpp │ ├── AdManager.h │ ├── AppDelegate.cpp │ ├── AppDelegate.h │ ├── ConfigParser.cpp │ ├── ConfigParser.h │ ├── Runtime.cpp │ ├── Runtime.h │ ├── VisibleRect.cpp │ ├── VisibleRect.h │ ├── lua_admanager_manual.cpp │ └── lua_admanager_manual.h │ ├── eclipse │ └── .metadata │ │ ├── .lock │ │ ├── .log │ │ ├── .plugins │ │ ├── org.eclipse.cdt.core │ │ │ └── .log │ │ ├── org.eclipse.cdt.make.core │ │ │ ├── specs.c │ │ │ └── specs.cpp │ │ ├── org.eclipse.cdt.make.ui │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.cdt.ui │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.core.resources │ │ │ ├── .history │ │ │ │ ├── 0 │ │ │ │ │ └── e012927a8c5b00141624dead4297cbcc │ │ │ │ ├── 33 │ │ │ │ │ └── 10b1d3b08c5b00141624dead4297cbcc │ │ │ │ ├── 48 │ │ │ │ │ └── 904b1b7e8a5b00141624dead4297cbcc │ │ │ │ ├── 64 │ │ │ │ │ └── b0793e808a5b00141624dead4297cbcc │ │ │ │ ├── 71 │ │ │ │ │ └── 007c5e398c5b00141624dead4297cbcc │ │ │ │ ├── 81 │ │ │ │ │ └── e092383a8d5b00141624dead4297cbcc │ │ │ │ ├── 88 │ │ │ │ │ └── 0057151a8d5b00141624dead4297cbcc │ │ │ │ ├── 94 │ │ │ │ │ └── 903ac2628d5b00141624dead4297cbcc │ │ │ │ ├── 2e │ │ │ │ │ └── 70b587478d5b00141624dead4297cbcc │ │ │ │ ├── 3d │ │ │ │ │ └── 80617f718c5b00141624dead4297cbcc │ │ │ │ ├── a4 │ │ │ │ │ └── 200ca5768a5b00141624dead4297cbcc │ │ │ │ ├── ec │ │ │ │ │ └── f09fb2d48d5b00141624dead4297cbcc │ │ │ │ ├── f0 │ │ │ │ │ └── 307ba4898a5b00141624dead4297cbcc │ │ │ │ └── f8 │ │ │ │ │ └── d0ee1aad8c5b00141624dead4297cbcc │ │ │ ├── .projects │ │ │ │ ├── SnakeGameLua │ │ │ │ │ ├── .indexes │ │ │ │ │ │ ├── a0 │ │ │ │ │ │ │ └── de │ │ │ │ │ │ │ │ └── properties.index │ │ │ │ │ │ ├── e4 │ │ │ │ │ │ │ └── e4 │ │ │ │ │ │ │ │ └── 35 │ │ │ │ │ │ │ │ └── f8 │ │ │ │ │ │ │ │ └── history.index │ │ │ │ │ │ └── properties.index │ │ │ │ │ ├── .location │ │ │ │ │ ├── .markers │ │ │ │ │ ├── .markers.snap │ │ │ │ │ ├── .syncinfo.snap │ │ │ │ │ └── org.eclipse.jdt.core │ │ │ │ │ │ └── state.dat │ │ │ │ └── libcocos2dx │ │ │ │ │ ├── .indexes │ │ │ │ │ └── properties.index │ │ │ │ │ ├── .location │ │ │ │ │ ├── .markers │ │ │ │ │ ├── .markers.snap │ │ │ │ │ ├── .syncinfo.snap │ │ │ │ │ └── org.eclipse.jdt.core │ │ │ │ │ └── state.dat │ │ │ ├── .root │ │ │ │ ├── .indexes │ │ │ │ │ ├── history.version │ │ │ │ │ ├── properties.index │ │ │ │ │ └── properties.version │ │ │ │ ├── .markers.snap │ │ │ │ └── 12.tree │ │ │ ├── .safetable │ │ │ │ └── org.eclipse.core.resources │ │ │ └── .snap │ │ ├── org.eclipse.core.runtime │ │ │ └── .settings │ │ │ │ ├── com.android.ide.eclipse.adt.prefs │ │ │ │ ├── com.android.ide.eclipse.ddms.prefs │ │ │ │ ├── org.eclipse.cdt.core.prj-SnakeGameLua.prefs │ │ │ │ ├── org.eclipse.cdt.debug.core.prefs │ │ │ │ ├── org.eclipse.cdt.ui.prefs │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.debug.core.prefs │ │ │ │ ├── org.eclipse.debug.ui.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ ├── org.eclipse.jdt.launching.prefs │ │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ │ ├── org.eclipse.team.ui.prefs │ │ │ │ ├── org.eclipse.ui.editors.prefs │ │ │ │ ├── org.eclipse.ui.ide.prefs │ │ │ │ ├── org.eclipse.ui.prefs │ │ │ │ ├── org.eclipse.ui.workbench.prefs │ │ │ │ ├── org.eclipse.wst.sse.core.prefs │ │ │ │ └── org.eclipse.wst.sse.ui.prefs │ │ ├── org.eclipse.debug.core │ │ │ └── .launches │ │ │ │ └── SnakeGameLua.launch │ │ ├── org.eclipse.debug.ui │ │ │ ├── dialog_settings.xml │ │ │ └── launchConfigurationHistory.xml │ │ ├── org.eclipse.e4.workbench │ │ │ └── workbench.xmi │ │ ├── org.eclipse.jdt.core │ │ │ ├── 1213525442.index │ │ │ ├── 1550828653.index │ │ │ ├── 2483468404.index │ │ │ ├── 2741727132.index │ │ │ ├── 3601901917.index │ │ │ ├── externalLibsTimeStamps │ │ │ ├── indexNamesMap.txt │ │ │ ├── invalidArchivesCache │ │ │ ├── javaLikeNames.txt │ │ │ ├── nonChainingJarsCache │ │ │ ├── savedIndexNames.txt │ │ │ └── variablesAndContainers.dat │ │ ├── org.eclipse.jdt.launching │ │ │ ├── .install.xml │ │ │ └── libraryInfos.xml │ │ ├── org.eclipse.jdt.ui │ │ │ ├── OpenTypeHistory.xml │ │ │ ├── QualifiedTypeNameHistory.xml │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ltk.core.refactoring │ │ │ └── .refactorings │ │ │ │ └── SnakeGameLua │ │ │ │ └── 2014 │ │ │ │ └── 10 │ │ │ │ └── 43 │ │ │ │ ├── refactorings.history │ │ │ │ └── refactorings.index │ │ ├── org.eclipse.ltk.ui.refactoring │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ui.editors │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ui.ide │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ui.workbench.texteditor │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.ui.workbench │ │ │ ├── dialog_settings.xml │ │ │ └── workingsets.xml │ │ ├── org.eclipse.wst.internet.cache │ │ │ └── cache.xml │ │ ├── org.eclipse.wst.sse.ui │ │ │ └── dialog_settings.xml │ │ └── org.eclipse.wst.xml.core │ │ │ ├── default_catalog.xml │ │ │ └── system_catalog.xml │ │ └── version.ini │ ├── proj.android │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build-cfg.json │ ├── build.xml │ ├── gen │ │ ├── R.java.d │ │ └── com │ │ │ └── eleven │ │ │ └── game │ │ │ └── snakegame │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── lua │ │ │ ├── Runtime_android.cpp │ │ │ └── main.cpp │ ├── libs │ │ ├── YoumiSdk_v4.10_2014-10-15.jar │ │ └── armeabi │ │ │ └── libcocos2dlua.so │ ├── local.properties │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── lua │ │ ├── AppActivity.java │ │ ├── IAdManager.java │ │ └── YoumiAdManager.java │ ├── proj.ios_mac │ ├── Runtime_ios-mac.mm │ ├── SnakeGameLua.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── SnakeGameLua.xccheckout │ │ │ └── xcuserdata │ │ │ │ └── eleven.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── eleven.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── SnakeGameLua Mac.xcscheme │ │ │ ├── SnakeGameLua iOS.xcscheme │ │ │ └── xcschememanagement.plist │ ├── build │ │ └── SnakeGameLua.build │ │ │ ├── Debug-iphonesimulator │ │ │ └── SnakeGameLua iOS.build │ │ │ │ ├── Objects-normal │ │ │ │ └── i386 │ │ │ │ │ ├── AppController.d │ │ │ │ │ ├── AppController.dia │ │ │ │ │ ├── AppController.o │ │ │ │ │ ├── AppDelegate.d │ │ │ │ │ ├── AppDelegate.dia │ │ │ │ │ ├── AppDelegate.o │ │ │ │ │ ├── ConfigParser.d │ │ │ │ │ ├── ConfigParser.dia │ │ │ │ │ ├── ConfigParser.o │ │ │ │ │ ├── RootViewController.d │ │ │ │ │ ├── RootViewController.dia │ │ │ │ │ ├── RootViewController.o │ │ │ │ │ ├── Runtime.d │ │ │ │ │ ├── Runtime.dia │ │ │ │ │ ├── Runtime.o │ │ │ │ │ ├── Runtime_ios-mac.d │ │ │ │ │ ├── Runtime_ios-mac.dia │ │ │ │ │ ├── Runtime_ios-mac.o │ │ │ │ │ ├── SnakeGameLua iOS.LinkFileList │ │ │ │ │ ├── SnakeGameLua iOS_dependency_info.dat │ │ │ │ │ ├── VisibleRect.d │ │ │ │ │ ├── VisibleRect.dia │ │ │ │ │ ├── VisibleRect.o │ │ │ │ │ ├── main.d │ │ │ │ │ ├── main.dia │ │ │ │ │ └── main.o │ │ │ │ ├── SnakeGameLua iOS-all-target-headers.hmap │ │ │ │ ├── SnakeGameLua iOS-generated-files.hmap │ │ │ │ ├── SnakeGameLua iOS-own-target-headers.hmap │ │ │ │ ├── SnakeGameLua iOS-project-headers.hmap │ │ │ │ ├── SnakeGameLua iOS.dep │ │ │ │ ├── SnakeGameLua iOS.hmap │ │ │ │ ├── SnakeGameLua iOS~.dep │ │ │ │ ├── build-state.dat │ │ │ │ └── build-state~.dat │ │ │ └── Debug │ │ │ └── SnakeGameLua Mac.build │ │ │ ├── Objects-normal │ │ │ └── x86_64 │ │ │ │ ├── AppDelegate.d │ │ │ │ ├── AppDelegate.dia │ │ │ │ ├── AppDelegate.o │ │ │ │ ├── ConfigParser.d │ │ │ │ ├── ConfigParser.dia │ │ │ │ ├── ConfigParser.o │ │ │ │ ├── NSAppSheetAdditions.d │ │ │ │ ├── NSAppSheetAdditions.dia │ │ │ │ ├── NSAppSheetAdditions.o │ │ │ │ ├── Runtime.d │ │ │ │ ├── Runtime.dia │ │ │ │ ├── Runtime.o │ │ │ │ ├── Runtime_ios-mac.d │ │ │ │ ├── Runtime_ios-mac.dia │ │ │ │ ├── Runtime_ios-mac.o │ │ │ │ ├── SimulatorApp.d │ │ │ │ ├── SimulatorApp.dia │ │ │ │ ├── SimulatorApp.o │ │ │ │ ├── SnakeGameLua Mac.LinkFileList │ │ │ │ ├── SnakeGameLua Mac_dependency_info.dat │ │ │ │ ├── VisibleRect.d │ │ │ │ ├── VisibleRect.dia │ │ │ │ ├── VisibleRect.o │ │ │ │ ├── WorkSpaceDialogController.d │ │ │ │ ├── WorkSpaceDialogController.dia │ │ │ │ ├── WorkSpaceDialogController.o │ │ │ │ ├── main.d │ │ │ │ ├── main.dia │ │ │ │ └── main.o │ │ │ ├── SnakeGameLua Mac-all-target-headers.hmap │ │ │ ├── SnakeGameLua Mac-generated-files.hmap │ │ │ ├── SnakeGameLua Mac-own-target-headers.hmap │ │ │ ├── SnakeGameLua Mac-project-headers.hmap │ │ │ ├── SnakeGameLua Mac.dep │ │ │ ├── SnakeGameLua Mac.hmap │ │ │ ├── SnakeGameLua Mac~.dep │ │ │ ├── build-state.dat │ │ │ └── build-state~.dat │ ├── ios │ │ ├── AppController.h │ │ ├── AppController.mm │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-100.png │ │ ├── Icon-114.png │ │ ├── Icon-120.png │ │ ├── Icon-144.png │ │ ├── Icon-152.png │ │ ├── Icon-29.png │ │ ├── Icon-40.png │ │ ├── Icon-50.png │ │ ├── Icon-57.png │ │ ├── Icon-58.png │ │ ├── Icon-72.png │ │ ├── Icon-76.png │ │ ├── Icon-80.png │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ ├── RootViewController.h │ │ ├── RootViewController.mm │ │ ├── build-cfg.json │ │ └── main.m │ └── mac │ │ ├── Icon.icns │ │ ├── Info.plist │ │ ├── MainMenu.xib │ │ ├── NSAppSheetAdditions.h │ │ ├── NSAppSheetAdditions.m │ │ ├── Prefix.pch │ │ ├── SimulatorApp.h │ │ ├── SimulatorApp.mm │ │ ├── WorkSpaceDialog.xib │ │ ├── WorkSpaceDialogController.h │ │ ├── WorkSpaceDialogController.mm │ │ ├── build-cfg.json │ │ └── main.m │ └── proj.win32 │ ├── Runtime_win32.cpp │ ├── SimulatorWindow.cpp │ ├── SimulatorWindow.h │ ├── SnakeGameLua.sln │ ├── SnakeGameLua.vcxproj │ ├── SnakeGameLua.vcxproj.filters │ ├── SnakeGameLua.vcxproj.user │ ├── build-cfg.json │ ├── game.rc │ ├── main.cpp │ ├── main.h │ ├── res │ └── game.ico │ └── resource.h ├── origin_res ├── device-2014-08-24-005340.jpg ├── device-2014-08-24-005351.jpg ├── device-2014-08-24-005403.jpg ├── device-2014-08-24-005418.jpg ├── device-2014-08-24-005438.jpg ├── logo512.png ├── main_2.png ├── main_3.png ├── main_4.png ├── main_5.png ├── main_6.png ├── main_7.png ├── main_8.png ├── snake.plist ├── snake.png ├── snake.tps └── 新建文件夹 │ ├── 关卡选择-吊环.png │ ├── 关卡选择-石壁关卡.png │ ├── 关卡选择-草地1.png │ ├── 关卡选择-草地关卡.png │ ├── 关卡选择-雪地关卡.png │ ├── 关卡选择木板.png │ └── 关卡选择背景.png ├── publish └── android │ ├── SnakeGameLua-debug.apk │ ├── SnakeGameLua-release-signed.apk │ └── SnakeGameLua-release-unsigned.apk ├── res ├── barrier.png ├── body0.png ├── body1.png ├── close.png ├── end.png ├── food.png ├── head.png ├── heart.png ├── heart_bar_grass.png ├── heart_bar_snow.png ├── heart_bar_stone.png ├── heart_box.png ├── left_btn.png ├── main_1.jpg ├── map_grass.png ├── map_grass_bg.jpg ├── map_select_bg.jpg ├── map_selector.png ├── map_snow.png ├── map_snow_bg.jpg ├── map_stone.png ├── map_stone_bg.jpg ├── right_btn.png ├── rings.png ├── setting_btn.png ├── setting_touched_btn.png ├── start_btn.png ├── start_touched_btn.png ├── tips1.png ├── tips2.png ├── tips3.png ├── tips4.png ├── tips5.png └── tips6.png └── src ├── Barrier.lua ├── Food.lua ├── G.lua ├── GameLayer.lua ├── GameOver.lua ├── GameScene.lua ├── HeartBar.lua ├── HomeLayer.lua ├── HomeScene.lua ├── MapLevel.lua ├── MapSelectLayer.lua ├── MapSelectScene.lua ├── Selector.lua ├── Snake.lua ├── SnakeNode.lua └── main.lua /.buildpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/.buildpath -------------------------------------------------------------------------------- /.cocos-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/.cocos-project.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/.settings/org.eclipse.ltk.core.refactoring.prefs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/README.md -------------------------------------------------------------------------------- /bytecode/Barrier.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/Barrier.lua -------------------------------------------------------------------------------- /bytecode/Food.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/Food.lua -------------------------------------------------------------------------------- /bytecode/G.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/G.lua -------------------------------------------------------------------------------- /bytecode/GameLayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/GameLayer.lua -------------------------------------------------------------------------------- /bytecode/GameOver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/GameOver.lua -------------------------------------------------------------------------------- /bytecode/GameScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/GameScene.lua -------------------------------------------------------------------------------- /bytecode/HeartBar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/HeartBar.lua -------------------------------------------------------------------------------- /bytecode/HomeLayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/HomeLayer.lua -------------------------------------------------------------------------------- /bytecode/HomeScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/HomeScene.lua -------------------------------------------------------------------------------- /bytecode/MapLevel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/MapLevel.lua -------------------------------------------------------------------------------- /bytecode/MapSelectLayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/MapSelectLayer.lua -------------------------------------------------------------------------------- /bytecode/MapSelectScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/MapSelectScene.lua -------------------------------------------------------------------------------- /bytecode/Selector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/Selector.lua -------------------------------------------------------------------------------- /bytecode/Snake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/Snake.lua -------------------------------------------------------------------------------- /bytecode/SnakeNode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/SnakeNode.lua -------------------------------------------------------------------------------- /bytecode/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/bytecode/main.lua -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/config.json -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/AdManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/AdManager.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/AdManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/AdManager.h -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/AppDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/AppDelegate.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/AppDelegate.h -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/ConfigParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/ConfigParser.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/ConfigParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/ConfigParser.h -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/Runtime.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/Runtime.h -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/VisibleRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/VisibleRect.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/VisibleRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/VisibleRect.h -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/lua_admanager_manual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/lua_admanager_manual.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/Classes/lua_admanager_manual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/Classes/lua_admanager_manual.h -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.log -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.cdt.core/.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.cdt.core/.log -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.cdt.make.core/specs.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.cdt.make.core/specs.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.cdt.make.ui/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.cdt.make.ui/dialog_settings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.cdt.ui/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.cdt.ui/dialog_settings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/0/e012927a8c5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/0/e012927a8c5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/2e/70b587478d5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/2e/70b587478d5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/33/10b1d3b08c5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/33/10b1d3b08c5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/3d/80617f718c5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/3d/80617f718c5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/48/904b1b7e8a5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/48/904b1b7e8a5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/64/b0793e808a5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/64/b0793e808a5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/71/007c5e398c5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/71/007c5e398c5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/81/e092383a8d5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/81/e092383a8d5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/88/0057151a8d5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/88/0057151a8d5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/94/903ac2628d5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/94/903ac2628d5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/a4/200ca5768a5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/a4/200ca5768a5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/ec/f09fb2d48d5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/ec/f09fb2d48d5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/f0/307ba4898a5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/f0/307ba4898a5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/f8/d0ee1aad8c5b00141624dead4297cbcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.history/f8/d0ee1aad8c5b00141624dead4297cbcc -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.indexes/a0/de/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.indexes/a0/de/properties.index -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.indexes/e4/e4/35/f8/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.indexes/e4/e4/35/f8/history.index -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.indexes/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.indexes/properties.index -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.location -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.markers -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.markers.snap -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/.syncinfo.snap -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/org.eclipse.jdt.core/state.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/SnakeGameLua/org.eclipse.jdt.core/state.dat -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/.indexes/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/.indexes/properties.index -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/.location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/.location -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/.markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/.markers -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/.markers.snap -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/.syncinfo.snap -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/org.eclipse.jdt.core/state.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/libcocos2dx/org.eclipse.jdt.core/state.dat -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/12.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/12.tree -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.resources/.snap -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.adt.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.adt.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.ddms.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.ddms.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.core.prj-SnakeGameLua.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.core.prj-SnakeGameLua.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.debug.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.debug.core.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.ui.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.core.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.launching.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.sse.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.sse.core.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.sse.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.sse.ui.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.debug.core/.launches/SnakeGameLua.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.debug.core/.launches/SnakeGameLua.launch -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.debug.ui/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.debug.ui/dialog_settings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/1213525442.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/1213525442.index -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/1550828653.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/1550828653.index -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/2483468404.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/2483468404.index -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/2741727132.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/2741727132.index -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/3601901917.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/3601901917.index -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/indexNamesMap.txt: -------------------------------------------------------------------------------- 1 | INDEX VERSION 1.126 2 | -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/invalidArchivesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/javaLikeNames.txt: -------------------------------------------------------------------------------- 1 | java -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.launching/.install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.launching/.install.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.launching/libraryInfos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.launching/libraryInfos.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/SnakeGameLua/2014/10/43/refactorings.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/SnakeGameLua/2014/10/43/refactorings.history -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/SnakeGameLua/2014/10/43/refactorings.index: -------------------------------------------------------------------------------- 1 | 1414160986224 Delete element 2 | -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ltk.ui.refactoring/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ltk.ui.refactoring/dialog_settings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ui.editors/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ui.editors/dialog_settings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ui.workbench.texteditor/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ui.workbench.texteditor/dialog_settings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.wst.internet.cache/cache.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.wst.sse.ui/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.wst.sse.ui/dialog_settings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.wst.xml.core/default_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.wst.xml.core/default_catalog.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.wst.xml.core/system_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/eclipse/.metadata/.plugins/org.eclipse.wst.xml.core/system_catalog.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/eclipse/.metadata/version.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.core.runtime=1 -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/.classpath -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/.project -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/AndroidManifest.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/ant.properties -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/build-cfg.json -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/build.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/gen/R.java.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/gen/R.java.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/gen/com/eleven/game/snakegame/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/gen/com/eleven/game/snakegame/BuildConfig.java -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/gen/com/eleven/game/snakegame/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/gen/com/eleven/game/snakegame/R.java -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/jni/Android.mk -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/jni/Application.mk -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/jni/lua/Runtime_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/jni/lua/Runtime_android.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/jni/lua/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/jni/lua/main.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/libs/YoumiSdk_v4.10_2014-10-15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/libs/YoumiSdk_v4.10_2014-10-15.jar -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/libs/armeabi/libcocos2dlua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/libs/armeabi/libcocos2dlua.so -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/local.properties -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/proguard-project.txt -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/project.properties -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/res/values/strings.xml -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/src/org/cocos2dx/lua/AppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/src/org/cocos2dx/lua/AppActivity.java -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/src/org/cocos2dx/lua/IAdManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/src/org/cocos2dx/lua/IAdManager.java -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.android/src/org/cocos2dx/lua/YoumiAdManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.android/src/org/cocos2dx/lua/YoumiAdManager.java -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/Runtime_ios-mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/Runtime_ios-mac.mm -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/project.xcworkspace/xcshareddata/SnakeGameLua.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/project.xcworkspace/xcshareddata/SnakeGameLua.xccheckout -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/project.xcworkspace/xcuserdata/eleven.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/project.xcworkspace/xcuserdata/eleven.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/xcuserdata/eleven.xcuserdatad/xcschemes/SnakeGameLua Mac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/xcuserdata/eleven.xcuserdatad/xcschemes/SnakeGameLua Mac.xcscheme -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/xcuserdata/eleven.xcuserdatad/xcschemes/SnakeGameLua iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/xcuserdata/eleven.xcuserdatad/xcschemes/SnakeGameLua iOS.xcscheme -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/xcuserdata/eleven.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/SnakeGameLua.xcodeproj/xcuserdata/eleven.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppController.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppController.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppController.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppController.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppDelegate.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppDelegate.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppDelegate.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppDelegate.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppDelegate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/AppDelegate.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/ConfigParser.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/ConfigParser.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/ConfigParser.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/ConfigParser.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/ConfigParser.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/ConfigParser.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/RootViewController.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/RootViewController.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/RootViewController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/RootViewController.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/RootViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/RootViewController.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime_ios-mac.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime_ios-mac.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime_ios-mac.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime_ios-mac.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime_ios-mac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/Runtime_ios-mac.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/SnakeGameLua iOS.LinkFileList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/SnakeGameLua iOS.LinkFileList -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/SnakeGameLua iOS_dependency_info.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/SnakeGameLua iOS_dependency_info.dat -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/VisibleRect.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/VisibleRect.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/VisibleRect.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/VisibleRect.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/VisibleRect.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/VisibleRect.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/main.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/main.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/main.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/Objects-normal/i386/main.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS-all-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS-all-target-headers.hmap -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS-generated-files.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS-generated-files.hmap -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS-own-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS-own-target-headers.hmap -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS-project-headers.hmap -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS.dep -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS.hmap -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS~.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/SnakeGameLua iOS~.dep -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/build-state.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/build-state.dat -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/build-state~.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug-iphonesimulator/SnakeGameLua iOS.build/build-state~.dat -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/AppDelegate.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/AppDelegate.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/AppDelegate.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/AppDelegate.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/AppDelegate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/AppDelegate.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/ConfigParser.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/ConfigParser.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/ConfigParser.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/ConfigParser.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/ConfigParser.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/ConfigParser.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/NSAppSheetAdditions.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/NSAppSheetAdditions.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/NSAppSheetAdditions.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/NSAppSheetAdditions.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/NSAppSheetAdditions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/NSAppSheetAdditions.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime_ios-mac.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime_ios-mac.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime_ios-mac.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime_ios-mac.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime_ios-mac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/Runtime_ios-mac.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/SimulatorApp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/SimulatorApp.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/SimulatorApp.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/SimulatorApp.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/SimulatorApp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/SimulatorApp.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/SnakeGameLua Mac.LinkFileList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/SnakeGameLua Mac.LinkFileList -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/SnakeGameLua Mac_dependency_info.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/SnakeGameLua Mac_dependency_info.dat -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/VisibleRect.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/VisibleRect.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/VisibleRect.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/VisibleRect.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/VisibleRect.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/VisibleRect.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/WorkSpaceDialogController.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/WorkSpaceDialogController.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/WorkSpaceDialogController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/WorkSpaceDialogController.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/WorkSpaceDialogController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/WorkSpaceDialogController.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/main.d -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/main.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/main.dia -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/Objects-normal/x86_64/main.o -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac-all-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac-all-target-headers.hmap -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac-generated-files.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac-generated-files.hmap -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac-own-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac-own-target-headers.hmap -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac-project-headers.hmap -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac.dep -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac.hmap -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac~.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/SnakeGameLua Mac~.dep -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/build-state.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/build-state.dat -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/build-state~.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/build/SnakeGameLua.build/Debug/SnakeGameLua Mac.build/build-state~.dat -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/AppController.h -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/AppController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/AppController.mm -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Info.plist -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/Prefix.pch -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/RootViewController.h -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/RootViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/RootViewController.mm -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/build-cfg.json -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/ios/main.m -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/Info.plist -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/MainMenu.xib -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/NSAppSheetAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/NSAppSheetAdditions.h -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/NSAppSheetAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/NSAppSheetAdditions.m -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/Prefix.pch -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/SimulatorApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/SimulatorApp.h -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/SimulatorApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/SimulatorApp.mm -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/WorkSpaceDialog.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/WorkSpaceDialog.xib -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/WorkSpaceDialogController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/WorkSpaceDialogController.h -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/WorkSpaceDialogController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/WorkSpaceDialogController.mm -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/build-cfg.json -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.ios_mac/mac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.ios_mac/mac/main.m -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/Runtime_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/Runtime_win32.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/SimulatorWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/SimulatorWindow.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/SimulatorWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/SimulatorWindow.h -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/SnakeGameLua.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/SnakeGameLua.sln -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/SnakeGameLua.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/SnakeGameLua.vcxproj -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/SnakeGameLua.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/SnakeGameLua.vcxproj.filters -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/SnakeGameLua.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/SnakeGameLua.vcxproj.user -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/build-cfg.json -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/game.rc -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/main.cpp -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/main.h -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/res/game.ico -------------------------------------------------------------------------------- /frameworks/runtime-src/proj.win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/frameworks/runtime-src/proj.win32/resource.h -------------------------------------------------------------------------------- /origin_res/device-2014-08-24-005340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/device-2014-08-24-005340.jpg -------------------------------------------------------------------------------- /origin_res/device-2014-08-24-005351.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/device-2014-08-24-005351.jpg -------------------------------------------------------------------------------- /origin_res/device-2014-08-24-005403.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/device-2014-08-24-005403.jpg -------------------------------------------------------------------------------- /origin_res/device-2014-08-24-005418.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/device-2014-08-24-005418.jpg -------------------------------------------------------------------------------- /origin_res/device-2014-08-24-005438.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/device-2014-08-24-005438.jpg -------------------------------------------------------------------------------- /origin_res/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/logo512.png -------------------------------------------------------------------------------- /origin_res/main_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/main_2.png -------------------------------------------------------------------------------- /origin_res/main_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/main_3.png -------------------------------------------------------------------------------- /origin_res/main_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/main_4.png -------------------------------------------------------------------------------- /origin_res/main_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/main_5.png -------------------------------------------------------------------------------- /origin_res/main_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/main_6.png -------------------------------------------------------------------------------- /origin_res/main_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/main_7.png -------------------------------------------------------------------------------- /origin_res/main_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/main_8.png -------------------------------------------------------------------------------- /origin_res/snake.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/snake.plist -------------------------------------------------------------------------------- /origin_res/snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/snake.png -------------------------------------------------------------------------------- /origin_res/snake.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/snake.tps -------------------------------------------------------------------------------- /origin_res/新建文件夹/关卡选择-吊环.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/新建文件夹/关卡选择-吊环.png -------------------------------------------------------------------------------- /origin_res/新建文件夹/关卡选择-石壁关卡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/新建文件夹/关卡选择-石壁关卡.png -------------------------------------------------------------------------------- /origin_res/新建文件夹/关卡选择-草地1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/新建文件夹/关卡选择-草地1.png -------------------------------------------------------------------------------- /origin_res/新建文件夹/关卡选择-草地关卡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/新建文件夹/关卡选择-草地关卡.png -------------------------------------------------------------------------------- /origin_res/新建文件夹/关卡选择-雪地关卡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/新建文件夹/关卡选择-雪地关卡.png -------------------------------------------------------------------------------- /origin_res/新建文件夹/关卡选择木板.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/新建文件夹/关卡选择木板.png -------------------------------------------------------------------------------- /origin_res/新建文件夹/关卡选择背景.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/origin_res/新建文件夹/关卡选择背景.png -------------------------------------------------------------------------------- /publish/android/SnakeGameLua-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/publish/android/SnakeGameLua-debug.apk -------------------------------------------------------------------------------- /publish/android/SnakeGameLua-release-signed.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/publish/android/SnakeGameLua-release-signed.apk -------------------------------------------------------------------------------- /publish/android/SnakeGameLua-release-unsigned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/publish/android/SnakeGameLua-release-unsigned.apk -------------------------------------------------------------------------------- /res/barrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/barrier.png -------------------------------------------------------------------------------- /res/body0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/body0.png -------------------------------------------------------------------------------- /res/body1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/body1.png -------------------------------------------------------------------------------- /res/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/close.png -------------------------------------------------------------------------------- /res/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/end.png -------------------------------------------------------------------------------- /res/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/food.png -------------------------------------------------------------------------------- /res/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/head.png -------------------------------------------------------------------------------- /res/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/heart.png -------------------------------------------------------------------------------- /res/heart_bar_grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/heart_bar_grass.png -------------------------------------------------------------------------------- /res/heart_bar_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/heart_bar_snow.png -------------------------------------------------------------------------------- /res/heart_bar_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/heart_bar_stone.png -------------------------------------------------------------------------------- /res/heart_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/heart_box.png -------------------------------------------------------------------------------- /res/left_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/left_btn.png -------------------------------------------------------------------------------- /res/main_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/main_1.jpg -------------------------------------------------------------------------------- /res/map_grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/map_grass.png -------------------------------------------------------------------------------- /res/map_grass_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/map_grass_bg.jpg -------------------------------------------------------------------------------- /res/map_select_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/map_select_bg.jpg -------------------------------------------------------------------------------- /res/map_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/map_selector.png -------------------------------------------------------------------------------- /res/map_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/map_snow.png -------------------------------------------------------------------------------- /res/map_snow_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/map_snow_bg.jpg -------------------------------------------------------------------------------- /res/map_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/map_stone.png -------------------------------------------------------------------------------- /res/map_stone_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/map_stone_bg.jpg -------------------------------------------------------------------------------- /res/right_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/right_btn.png -------------------------------------------------------------------------------- /res/rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/rings.png -------------------------------------------------------------------------------- /res/setting_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/setting_btn.png -------------------------------------------------------------------------------- /res/setting_touched_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/setting_touched_btn.png -------------------------------------------------------------------------------- /res/start_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/start_btn.png -------------------------------------------------------------------------------- /res/start_touched_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/start_touched_btn.png -------------------------------------------------------------------------------- /res/tips1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/tips1.png -------------------------------------------------------------------------------- /res/tips2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/tips2.png -------------------------------------------------------------------------------- /res/tips3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/tips3.png -------------------------------------------------------------------------------- /res/tips4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/tips4.png -------------------------------------------------------------------------------- /res/tips5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/tips5.png -------------------------------------------------------------------------------- /res/tips6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/res/tips6.png -------------------------------------------------------------------------------- /src/Barrier.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/Barrier.lua -------------------------------------------------------------------------------- /src/Food.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/Food.lua -------------------------------------------------------------------------------- /src/G.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/G.lua -------------------------------------------------------------------------------- /src/GameLayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/GameLayer.lua -------------------------------------------------------------------------------- /src/GameOver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/GameOver.lua -------------------------------------------------------------------------------- /src/GameScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/GameScene.lua -------------------------------------------------------------------------------- /src/HeartBar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/HeartBar.lua -------------------------------------------------------------------------------- /src/HomeLayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/HomeLayer.lua -------------------------------------------------------------------------------- /src/HomeScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/HomeScene.lua -------------------------------------------------------------------------------- /src/MapLevel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/MapLevel.lua -------------------------------------------------------------------------------- /src/MapSelectLayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/MapSelectLayer.lua -------------------------------------------------------------------------------- /src/MapSelectScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/MapSelectScene.lua -------------------------------------------------------------------------------- /src/Selector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/Selector.lua -------------------------------------------------------------------------------- /src/Snake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/Snake.lua -------------------------------------------------------------------------------- /src/SnakeNode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/SnakeNode.lua -------------------------------------------------------------------------------- /src/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyhacker2/SnakeGameLua/HEAD/src/main.lua --------------------------------------------------------------------------------