├── .gitattributes ├── .github ├── libs │ ├── SDL2.dll │ ├── libgcc_s_sjlj-1.dll │ ├── libogg-0.dll │ ├── libstdc++-6.dll │ ├── libvorbis-0.dll │ ├── libvorbisenc-2.dll │ ├── libvorbisfile-3.dll │ └── zlib1.dll ├── resources │ ├── Info.plist │ └── vce.icns └── workflows │ ├── ci-android.yml │ └── ci.yml ├── .gitignore ├── FEATURES.md ├── LICENSE.md ├── License exceptions.md ├── README.md ├── desktop_version ├── .clang-format ├── .dockerignore ├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTORS.txt ├── Dockerfile.switch ├── README.md ├── android-build.sh ├── android-project │ ├── .gitignore │ ├── android-project.iml │ ├── app │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ ├── CMakeLists.txt │ │ │ └── root │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ ├── io │ │ │ │ └── github │ │ │ │ │ └── v6cord │ │ │ │ │ └── vvvvvvce │ │ │ │ │ └── VCEActivity.java │ │ │ └── org │ │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ ├── HIDDevice.java │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ ├── SDL.java │ │ │ │ ├── SDLActivity.java │ │ │ │ ├── SDLAudioManager.java │ │ │ │ └── SDLControllerManager.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── build.sh ├── cmake │ ├── toolchain.cmake │ └── version.cmake ├── cpack.sh ├── data │ ├── VVVVVV-CE.desktop │ ├── VVVVVV.png │ ├── graphics │ │ ├── font.png │ │ ├── font.txt │ │ └── sprites.png │ ├── leo.ogg │ └── pop.wav ├── debug.sh ├── download-data.sh ├── icon.jpg ├── pinned-cmake.sh ├── resources.rc ├── run.sh ├── shell.nix ├── src │ ├── BinaryBlob.cpp │ ├── BinaryBlob.h │ ├── BlockV.cpp │ ├── BlockV.h │ ├── Credits.h │ ├── Ent.cpp │ ├── Ent.h │ ├── Entity.cpp │ ├── Entity.h │ ├── Enums.h │ ├── FileSystemUtils.cpp │ ├── FileSystemUtils.h │ ├── Finalclass.cpp │ ├── Finalclass.h │ ├── GOGNetwork.c │ ├── Game.cpp │ ├── Game.h │ ├── Graphics.cpp │ ├── Graphics.h │ ├── GraphicsResources.cpp │ ├── GraphicsResources.h │ ├── GraphicsUtil.cpp │ ├── GraphicsUtil.h │ ├── Input.cpp │ ├── Input.h │ ├── KeyPoll.cpp │ ├── KeyPoll.h │ ├── Labclass.cpp │ ├── Labclass.h │ ├── Logic.cpp │ ├── Logic.h │ ├── LuaScript.cpp │ ├── LuaScript.h │ ├── MakeAndPlay.h │ ├── Map.cpp │ ├── Map.h │ ├── Maths.h │ ├── Music.cpp │ ├── Music.h │ ├── Network.c │ ├── Network.h │ ├── Otherlevel.cpp │ ├── Otherlevel.h │ ├── Render.cpp │ ├── Render.h │ ├── Screen.cpp │ ├── Screen.h │ ├── Script.cpp │ ├── Script.h │ ├── Scripts.cpp │ ├── SoundSystem.cpp │ ├── SoundSystem.h │ ├── Spacestation2.cpp │ ├── Spacestation2.h │ ├── SteamNetwork.c │ ├── TerminalScripts.cpp │ ├── Textbox.cpp │ ├── Textbox.h │ ├── Tower.cpp │ ├── Tower.h │ ├── Utilities.cpp │ ├── Utilities.h │ ├── UtilityClass.cpp │ ├── UtilityClass.h │ ├── WarpClass.cpp │ ├── WarpClass.h │ ├── battery_apple.m │ ├── editor.cpp │ ├── editor.h │ ├── main.cpp │ ├── preloader.cpp │ ├── preloader.h │ └── trace.c ├── v6cord.ico ├── windres.patch └── wine-gdb.sh ├── mobile_version ├── application.xml ├── levels │ ├── eurogamer fork │ │ └── eurogamerotherlevelclass.as │ ├── finalclass.as │ ├── labclass.as │ ├── newgameclass.as │ ├── otherlevelclass.as │ ├── spacestation2class.as │ ├── towerclass.as │ └── warpclass.as ├── readme.MD └── src │ ├── EditorDataclass.as │ ├── LevelMetaData.as │ ├── Main.as │ ├── Preloader.as │ ├── bigroom │ └── input │ │ └── KeyPoll.as │ ├── blockclass.as │ ├── device.as │ ├── dwgraphicsclass.as │ ├── edentitiesclass.as │ ├── editor.as │ ├── edlevelclass.as │ ├── entclass.as │ ├── entityclass.as │ ├── gameclass.as │ ├── helpclass.as │ ├── includes │ ├── input.as │ ├── logic.as │ ├── render.as │ ├── scripts.as │ └── terminalscripts.as │ ├── mapclass.as │ ├── musicclass.as │ ├── platformclass.as │ ├── saveclass.as │ ├── scoreclass.as │ ├── scriptclass.as │ ├── textboxclass.as │ └── tmap.as ├── third_party ├── androidenv │ ├── build-app.nix │ ├── build-tools.nix │ ├── cmake.nix │ ├── compose-android-packages.nix │ ├── convertaddons.xsl │ ├── convertpackages.xsl │ ├── convertsystemimages.xsl │ ├── default.nix │ ├── deploy-androidpackage.nix │ ├── emulate-app.nix │ ├── emulator.nix │ ├── generate.sh │ ├── generated │ │ ├── addons.nix │ │ ├── packages.nix │ │ ├── system-images-android-tv.nix │ │ ├── system-images-android-wear-cn.nix │ │ ├── system-images-android-wear.nix │ │ ├── system-images-android.nix │ │ ├── system-images-google_apis.nix │ │ └── system-images-google_apis_playstore.nix │ ├── lldb.nix │ ├── ndk-bundle │ │ ├── default.nix │ │ └── make_standalone_toolchain.py_18.patch │ ├── platform-tools.nix │ ├── querypackages.sh │ ├── tools.nix │ ├── tools │ │ ├── 25.nix │ │ └── 26.nix │ └── xml │ │ ├── addon2-1.xml │ │ ├── android-sys-img2-1.xml │ │ ├── android-tv-sys-img2-1.xml │ │ ├── android-wear-cn-sys-img2-1.xml │ │ ├── android-wear-sys-img2-1.xml │ │ ├── google_apis-sys-img2-1.xml │ │ ├── google_apis_playstore-sys-img2-1.xml │ │ └── repository2-1.xml ├── cparse │ ├── .gitignore │ ├── .gitrepo │ ├── .travis.yml │ ├── LICENSE.mit │ ├── Makefile │ ├── README.md │ ├── builtin-features.cpp │ ├── builtin-features.inc │ ├── builtin-features │ │ ├── functions.inc │ │ ├── operations.inc │ │ ├── reservedWords.inc │ │ └── typeSpecificFunctions.inc │ ├── catch.cpp │ ├── catch.hpp │ ├── containers.cpp │ ├── containers.h │ ├── functions.cpp │ ├── functions.h │ ├── logo-cparse.png │ ├── packToken.cpp │ ├── packToken.h │ ├── shunting-yard-exceptions.h │ ├── shunting-yard.cpp │ ├── shunting-yard.h │ └── test-shunting-yard.cpp ├── libpng-1.6.37.tar.xz ├── lua-5.3.5 │ ├── Makefile │ ├── README │ ├── doc │ │ ├── contents.html │ │ ├── index.css │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── mingw-std-threads │ ├── .gitrepo │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── cmake_stdheaders_generator │ │ ├── CMakeLists.txt │ │ └── template.cpp │ ├── mingw.condition_variable.h │ ├── mingw.future.h │ ├── mingw.invoke.h │ ├── mingw.mutex.h │ ├── mingw.shared_mutex.h │ ├── mingw.thread.h │ ├── tests │ │ ├── CMakeLists.txt │ │ └── tests.cpp │ └── utility_scripts │ │ ├── Generate-StdLikeHeaders.ps1 │ │ ├── generate_std_like_headers.bat │ │ └── generate_std_like_headers_interactive.bat ├── physfs │ ├── LICENSE.txt │ ├── README.txt │ ├── physfs.c │ ├── physfs.h │ ├── physfs_archiver_dir.c │ ├── physfs_archiver_unpacked.c │ ├── physfs_archiver_zip.c │ ├── physfs_byteorder.c │ ├── physfs_casefolding.h │ ├── physfs_internal.h │ ├── physfs_miniz.h │ ├── physfs_platform_apple.m │ ├── physfs_platform_haiku.cpp │ ├── physfs_platform_posix.c │ ├── physfs_platform_unix.c │ ├── physfs_platform_windows.c │ ├── physfs_platforms.h │ └── physfs_unicode.c ├── sol2 │ └── sol.hpp ├── tinyxml2 │ ├── LICENSE.txt │ ├── readme.md │ ├── tinyxml2.cpp │ └── tinyxml2.h └── utfcpp │ ├── LICENSE │ └── source │ └── utf8 │ ├── checked.h │ ├── core.h │ └── unchecked.h └── tools ├── editors ├── Final Level Editor │ ├── imports │ │ ├── final │ │ │ ├── x41y51.txt │ │ │ ├── x41y52.txt │ │ │ ├── x41y56.txt │ │ │ ├── x42y51.txt │ │ │ ├── x42y52.txt │ │ │ ├── x42y56.txt │ │ │ ├── x43y51.txt │ │ │ ├── x43y52.txt │ │ │ ├── x44y51.txt │ │ │ ├── x44y52.txt │ │ │ ├── x45y51.txt │ │ │ ├── x45y52.txt │ │ │ ├── x46y51.txt │ │ │ ├── x46y54.txt │ │ │ ├── x47y51.txt │ │ │ ├── x47y52.txt │ │ │ ├── x47y54.txt │ │ │ ├── x48y51.txt │ │ │ ├── x48y52.txt │ │ │ ├── x48y54.txt │ │ │ ├── x49y51.txt │ │ │ ├── x49y54.txt │ │ │ ├── x50y51.txt │ │ │ ├── x50y52.txt │ │ │ ├── x50y53.txt │ │ │ ├── x50y54.txt │ │ │ ├── x52y53.txt │ │ │ ├── x53y48.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y52.txt │ │ │ ├── x53y53.txt │ │ │ ├── x54y48.txt │ │ │ ├── x54y49.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y52.txt │ │ │ └── x54y53.txt │ │ └── intermission │ │ │ ├── x41y56.txt │ │ │ ├── x42y56.txt │ │ │ ├── x43y56.txt │ │ │ ├── x44y56.txt │ │ │ ├── x45y56.txt │ │ │ ├── x46y56.txt │ │ │ ├── x47y56.txt │ │ │ ├── x48y56.txt │ │ │ ├── x49y56.txt │ │ │ ├── x50y56.txt │ │ │ ├── x51y56.txt │ │ │ ├── x52y56.txt │ │ │ ├── x53y56.txt │ │ │ └── x54y56.txt │ ├── main.cpp │ ├── maps │ │ ├── final │ │ │ ├── x41y51.txt │ │ │ ├── x41y52.txt │ │ │ ├── x41y56.txt │ │ │ ├── x42y51.txt │ │ │ ├── x42y52.txt │ │ │ ├── x42y56.txt │ │ │ ├── x43y51.txt │ │ │ ├── x43y52.txt │ │ │ ├── x44y51.txt │ │ │ ├── x44y52.txt │ │ │ ├── x45y51.txt │ │ │ ├── x45y52.txt │ │ │ ├── x46y51.txt │ │ │ ├── x46y54.txt │ │ │ ├── x47y51.txt │ │ │ ├── x47y52.txt │ │ │ ├── x47y54.txt │ │ │ ├── x48y51.txt │ │ │ ├── x48y52.txt │ │ │ ├── x48y54.txt │ │ │ ├── x49y51.txt │ │ │ ├── x49y54.txt │ │ │ ├── x49y55.txt │ │ │ ├── x50y51.txt │ │ │ ├── x50y52.txt │ │ │ ├── x50y53.txt │ │ │ ├── x50y54.txt │ │ │ ├── x52y53.txt │ │ │ ├── x53y48.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y52.txt │ │ │ ├── x53y53.txt │ │ │ ├── x54y48.txt │ │ │ ├── x54y49.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y52.txt │ │ │ └── x54y53.txt │ │ └── intermission │ │ │ ├── x41y56.txt │ │ │ ├── x42y56.txt │ │ │ ├── x43y56.txt │ │ │ ├── x44y56.txt │ │ │ ├── x45y56.txt │ │ │ ├── x46y56.txt │ │ │ ├── x47y56.txt │ │ │ ├── x48y56.txt │ │ │ ├── x49y56.txt │ │ │ ├── x50y56.txt │ │ │ ├── x51y56.txt │ │ │ ├── x52y56.txt │ │ │ ├── x53y56.txt │ │ │ └── x54y56.txt │ ├── tower1 │ │ ├── imports │ │ │ ├── tower (background).txt │ │ │ ├── tower (foreground).txt │ │ │ └── tower.txt │ │ ├── main.cpp │ │ └── maps │ │ │ ├── tower (background).txt │ │ │ ├── tower (foreground).txt │ │ │ └── tower.txt │ └── tower2 │ │ ├── imports │ │ ├── tower (background).txt │ │ ├── tower (foreground).txt │ │ └── tower.txt │ │ ├── main.cpp │ │ └── maps │ │ ├── tower (background).txt │ │ ├── tower (foreground).txt │ │ └── tower.txt ├── Lab Map Editor │ ├── imports │ │ ├── lab │ │ │ ├── rx50y50.txt │ │ │ ├── x48y52.txt │ │ │ ├── x48y53.txt │ │ │ ├── x49y51.txt │ │ │ ├── x49y52.txt │ │ │ ├── x49y53.txt │ │ │ ├── x49y54.txt │ │ │ ├── x49y55.txt │ │ │ ├── x50y50.txt │ │ │ ├── x50y51.txt │ │ │ ├── x50y52.txt │ │ │ ├── x50y53.txt │ │ │ ├── x50y54.txt │ │ │ ├── x50y55.txt │ │ │ ├── x50y58.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x51y53.txt │ │ │ ├── x51y54.txt │ │ │ ├── x51y55.txt │ │ │ ├── x51y58.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x52y53.txt │ │ │ ├── x52y54.txt │ │ │ ├── x52y55.txt │ │ │ ├── x52y56.txt │ │ │ ├── x52y57.txt │ │ │ ├── x52y58.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y54.txt │ │ │ ├── x53y55.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y54.txt │ │ │ ├── x54y55.txt │ │ │ ├── x55y49.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ ├── x55y52.txt │ │ │ ├── x55y53.txt │ │ │ └── x55y54.txt │ │ ├── otherlevel │ │ │ ├── x1y1.txt │ │ │ ├── x50y49.txt │ │ │ └── x50y50.txt │ │ └── spacestation │ │ │ ├── x49y48.txt │ │ │ ├── x49y49.txt │ │ │ ├── x49y50.txt │ │ │ ├── x49y51.txt │ │ │ ├── x49y52.txt │ │ │ ├── x50y48.txt │ │ │ ├── x50y50.txt │ │ │ ├── x50y51.txt │ │ │ ├── x50y52.txt │ │ │ ├── x51y47.txt │ │ │ ├── x51y48.txt │ │ │ ├── x51y49.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x51y53.txt │ │ │ ├── x51y54.txt │ │ │ ├── x52y48.txt │ │ │ ├── x52y49.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x53y47.txt │ │ │ ├── x53y48.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ └── x53y52.txt │ ├── main.cpp │ └── maps │ │ └── lab │ │ ├── x48y52.txt │ │ ├── x48y53.txt │ │ ├── x49y51.txt │ │ ├── x49y52.txt │ │ ├── x49y53.txt │ │ ├── x49y54.txt │ │ ├── x49y55.txt │ │ ├── x50y50.txt │ │ ├── x50y51.txt │ │ ├── x50y52.txt │ │ ├── x50y53.txt │ │ ├── x50y54.txt │ │ ├── x50y55.txt │ │ ├── x50y58.txt │ │ ├── x51y50.txt │ │ ├── x51y51.txt │ │ ├── x51y52.txt │ │ ├── x51y53.txt │ │ ├── x51y54.txt │ │ ├── x51y55.txt │ │ ├── x51y58.txt │ │ ├── x52y50.txt │ │ ├── x52y51.txt │ │ ├── x52y52.txt │ │ ├── x52y53.txt │ │ ├── x52y54.txt │ │ ├── x52y55.txt │ │ ├── x52y56.txt │ │ ├── x52y57.txt │ │ ├── x52y58.txt │ │ ├── x53y50.txt │ │ ├── x53y51.txt │ │ ├── x53y54.txt │ │ ├── x53y55.txt │ │ ├── x54y50.txt │ │ ├── x54y51.txt │ │ ├── x54y54.txt │ │ ├── x54y55.txt │ │ ├── x55y49.txt │ │ ├── x55y50.txt │ │ ├── x55y51.txt │ │ ├── x55y52.txt │ │ ├── x55y53.txt │ │ └── x55y54.txt ├── Level Mapping Editor │ ├── import.txt │ ├── lab │ │ ├── import.txt │ │ └── output.txt │ ├── main.cpp │ ├── output.txt │ ├── space station │ │ ├── import.txt │ │ └── output.txt │ └── warpzone │ │ ├── import.txt │ │ └── output.txt ├── Original Space Station Map Editor │ ├── imports │ │ └── spacestation │ │ │ ├── x49y48.txt │ │ │ ├── x49y49.txt │ │ │ ├── x49y50.txt │ │ │ ├── x49y51.txt │ │ │ ├── x49y52.txt │ │ │ ├── x50y48.txt │ │ │ ├── x50y50.txt │ │ │ ├── x50y51.txt │ │ │ ├── x50y52.txt │ │ │ ├── x51y47.txt │ │ │ ├── x51y48.txt │ │ │ ├── x51y49.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x51y53.txt │ │ │ ├── x51y54.txt │ │ │ ├── x52y48.txt │ │ │ ├── x52y49.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x53y47.txt │ │ │ ├── x53y48.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ └── x53y52.txt │ ├── main.cpp │ └── maps │ │ └── spacestation │ │ ├── x49y48.txt │ │ ├── x49y49.txt │ │ ├── x49y50.txt │ │ ├── x49y51.txt │ │ ├── x49y52.txt │ │ ├── x50y48.txt │ │ ├── x50y50.txt │ │ ├── x50y51.txt │ │ ├── x50y52.txt │ │ ├── x51y47.txt │ │ ├── x51y48.txt │ │ ├── x51y49.txt │ │ ├── x51y50.txt │ │ ├── x51y51.txt │ │ ├── x51y52.txt │ │ ├── x51y53.txt │ │ ├── x51y54.txt │ │ ├── x52y48.txt │ │ ├── x52y49.txt │ │ ├── x52y50.txt │ │ ├── x52y51.txt │ │ ├── x52y52.txt │ │ ├── x53y47.txt │ │ ├── x53y48.txt │ │ ├── x53y49.txt │ │ ├── x53y50.txt │ │ ├── x53y51.txt │ │ └── x53y52.txt ├── Other Map Editor │ ├── imports │ │ └── otherlevel │ │ │ ├── x1y1.txt │ │ │ ├── x46y49.txt │ │ │ ├── x47y49.txt │ │ │ ├── x48y49.txt │ │ │ ├── x48y50.txt │ │ │ ├── x48y51.txt │ │ │ ├── x49y49.txt │ │ │ ├── x49y50.txt │ │ │ ├── x50y50.txt │ │ │ └── x51y50.txt │ ├── main.cpp │ └── maps │ │ └── otherlevel │ │ ├── x1y1.txt │ │ ├── x46y49.txt │ │ ├── x47y49.txt │ │ ├── x48y49.txt │ │ ├── x48y50.txt │ │ ├── x48y51.txt │ │ ├── x49y49.txt │ │ ├── x49y50.txt │ │ ├── x50y50.txt │ │ └── x51y50.txt ├── Screenshot Outputting Map Editor │ ├── imports │ │ ├── final │ │ │ ├── x41y51.txt │ │ │ ├── x41y52.txt │ │ │ ├── x41y56.txt │ │ │ ├── x42y51.txt │ │ │ ├── x42y52.txt │ │ │ ├── x42y56.txt │ │ │ ├── x43y51.txt │ │ │ ├── x43y52.txt │ │ │ ├── x44y51.txt │ │ │ ├── x44y52.txt │ │ │ ├── x45y51.txt │ │ │ ├── x45y52.txt │ │ │ ├── x46y51.txt │ │ │ ├── x46y54.txt │ │ │ ├── x47y51.txt │ │ │ ├── x47y52.txt │ │ │ ├── x47y54.txt │ │ │ ├── x48y51.txt │ │ │ ├── x48y52.txt │ │ │ ├── x48y54.txt │ │ │ ├── x49y51.txt │ │ │ ├── x49y54.txt │ │ │ ├── x50y51.txt │ │ │ ├── x50y52.txt │ │ │ ├── x50y53.txt │ │ │ ├── x50y54.txt │ │ │ ├── x52y53.txt │ │ │ ├── x53y48.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y52.txt │ │ │ ├── x53y53.txt │ │ │ ├── x54y48.txt │ │ │ ├── x54y49.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y52.txt │ │ │ └── x54y53.txt │ │ ├── intermission │ │ │ ├── x41y56.txt │ │ │ ├── x42y56.txt │ │ │ ├── x43y56.txt │ │ │ ├── x44y56.txt │ │ │ ├── x45y56.txt │ │ │ ├── x46y56.txt │ │ │ ├── x47y56.txt │ │ │ ├── x48y56.txt │ │ │ ├── x49y56.txt │ │ │ ├── x50y56.txt │ │ │ ├── x51y56.txt │ │ │ ├── x52y56.txt │ │ │ ├── x53y56.txt │ │ │ └── x54y56.txt │ │ ├── lab │ │ │ ├── x48y52.txt │ │ │ ├── x48y53.txt │ │ │ ├── x49y51.txt │ │ │ ├── x49y52.txt │ │ │ ├── x49y53.txt │ │ │ ├── x49y54.txt │ │ │ ├── x49y55.txt │ │ │ ├── x50y50.txt │ │ │ ├── x50y51.txt │ │ │ ├── x50y52.txt │ │ │ ├── x50y53.txt │ │ │ ├── x50y54.txt │ │ │ ├── x50y55.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x51y53.txt │ │ │ ├── x51y54.txt │ │ │ ├── x51y55.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x52y53.txt │ │ │ ├── x52y54.txt │ │ │ ├── x52y55.txt │ │ │ ├── x52y56.txt │ │ │ ├── x52y57.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y54.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y54.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ ├── x55y52.txt │ │ │ ├── x55y53.txt │ │ │ └── x55y54.txt │ │ ├── otherlevel │ │ │ ├── x1y1.txt │ │ │ ├── x46y49.txt │ │ │ ├── x47y49.txt │ │ │ ├── x48y49.txt │ │ │ ├── x48y50.txt │ │ │ ├── x48y51.txt │ │ │ ├── x49y49.txt │ │ │ ├── x49y50.txt │ │ │ ├── x50y50.txt │ │ │ └── x51y50.txt │ │ ├── spacestation2 │ │ │ ├── x48y41.txt │ │ │ ├── x48y42.txt │ │ │ ├── x48y43.txt │ │ │ ├── x49y41.txt │ │ │ ├── x49y42.txt │ │ │ ├── x49y43.txt │ │ │ ├── x49y47.txt │ │ │ ├── x49y48.txt │ │ │ ├── x49y49.txt │ │ │ ├── x49y50.txt │ │ │ ├── x50y39.txt │ │ │ ├── x50y40.txt │ │ │ ├── x50y41.txt │ │ │ ├── x50y42.txt │ │ │ ├── x50y43.txt │ │ │ ├── x50y47.txt │ │ │ ├── x50y48.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x51y39.txt │ │ │ ├── x51y40.txt │ │ │ ├── x51y41.txt │ │ │ ├── x51y42.txt │ │ │ ├── x51y43.txt │ │ │ ├── x51y44.txt │ │ │ ├── x51y45.txt │ │ │ ├── x51y46.txt │ │ │ ├── x51y47.txt │ │ │ ├── x51y48.txt │ │ │ ├── x51y49.txt │ │ │ ├── x52y39.txt │ │ │ ├── x52y40.txt │ │ │ ├── x52y41.txt │ │ │ ├── x52y42.txt │ │ │ ├── x52y43.txt │ │ │ ├── x52y44.txt │ │ │ ├── x52y45.txt │ │ │ ├── x52y46.txt │ │ │ ├── x52y47.txt │ │ │ ├── x52y48.txt │ │ │ ├── x52y49.txt │ │ │ ├── x53y39.txt │ │ │ ├── x53y40.txt │ │ │ ├── x53y41.txt │ │ │ ├── x53y42.txt │ │ │ ├── x53y43.txt │ │ │ ├── x53y44.txt │ │ │ ├── x53y45.txt │ │ │ ├── x53y46.txt │ │ │ ├── x53y47.txt │ │ │ ├── x53y48.txt │ │ │ ├── x53y49.txt │ │ │ ├── x54y42.txt │ │ │ ├── x54y43.txt │ │ │ ├── x54y44.txt │ │ │ ├── x54y45.txt │ │ │ ├── x54y46.txt │ │ │ ├── x54y47.txt │ │ │ ├── x54y48.txt │ │ │ ├── x54y49.txt │ │ │ ├── x55y43.txt │ │ │ ├── x55y44.txt │ │ │ ├── x55y45.txt │ │ │ ├── x55y46.txt │ │ │ ├── x55y47.txt │ │ │ ├── x56y43.txt │ │ │ ├── x56y44.txt │ │ │ ├── x56y45.txt │ │ │ ├── x56y46.txt │ │ │ ├── x56y47.txt │ │ │ ├── x56y48.txt │ │ │ ├── x56y49.txt │ │ │ └── x56y50.txt │ │ └── warp │ │ │ ├── old │ │ │ ├── x50y50.txt │ │ │ └── x54y50.txt │ │ │ ├── x49y49.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x51y49.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x52y49.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y52.txt │ │ │ ├── x54y49.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y52.txt │ │ │ ├── x55y49.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ └── x55y52.txt │ ├── main.cpp │ ├── maps │ │ └── warp │ │ │ ├── old │ │ │ ├── x50y50.txt │ │ │ └── x54y50.txt │ │ │ ├── x49y49.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x51y49.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x52y49.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y52.txt │ │ │ ├── x54y49.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y52.txt │ │ │ ├── x55y49.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ └── x55y52.txt │ └── screens │ │ ├── final │ │ ├── x53y48.png │ │ ├── x53y49.png │ │ ├── x53y50.png │ │ ├── x53y51.png │ │ ├── x53y52.png │ │ └── x54y50.png │ │ ├── intermission │ │ ├── x41y56.png │ │ ├── x42y56.png │ │ ├── x43y56.png │ │ ├── x44y56.png │ │ ├── x45y56.png │ │ ├── x46y56.png │ │ ├── x47y56.png │ │ ├── x48y56.png │ │ ├── x49y56.png │ │ ├── x50y56.png │ │ ├── x51y56.png │ │ ├── x52y56.png │ │ ├── x53y56.png │ │ └── x54y56.png │ │ ├── lab │ │ ├── x48y52.png │ │ ├── x48y53.png │ │ ├── x49y51.png │ │ ├── x49y52.png │ │ ├── x49y53.png │ │ ├── x49y54.png │ │ ├── x49y55.png │ │ ├── x50y50.png │ │ ├── x50y51.png │ │ ├── x50y53.png │ │ ├── x50y54.png │ │ ├── x50y55.png │ │ ├── x51y50.png │ │ ├── x51y51.png │ │ ├── x51y52.png │ │ ├── x51y53.png │ │ ├── x51y54.png │ │ ├── x51y55.png │ │ ├── x52y50.png │ │ ├── x52y51.png │ │ ├── x52y52.png │ │ ├── x52y53.png │ │ ├── x52y54.png │ │ ├── x52y55.png │ │ ├── x53y50.png │ │ ├── x53y51.png │ │ ├── x53y54.png │ │ ├── x54y50.png │ │ ├── x54y51.png │ │ ├── x54y54.png │ │ ├── x55y50.png │ │ ├── x55y51.png │ │ ├── x55y52.png │ │ ├── x55y53.png │ │ └── x55y54.png │ │ ├── spacestation2 │ │ └── x51y41.png │ │ └── warp │ │ ├── x49y49.png │ │ ├── x50y49.png │ │ ├── x50y50.png │ │ ├── x51y49.png │ │ ├── x51y50.png │ │ ├── x51y51.png │ │ ├── x52y49.png │ │ ├── x52y50.png │ │ ├── x52y51.png │ │ ├── x52y52.png │ │ ├── x53y49.png │ │ ├── x53y50.png │ │ ├── x53y51.png │ │ ├── x53y52.png │ │ ├── x54y49.png │ │ ├── x54y50.png │ │ ├── x54y51.png │ │ ├── x54y52.png │ │ ├── x55y49.png │ │ ├── x55y50.png │ │ ├── x55y51.png │ │ └── x55y52.png ├── Space Station 2 Editor │ ├── imports │ │ └── spacestation2 │ │ │ ├── x48y41.txt │ │ │ ├── x48y42.txt │ │ │ ├── x48y43.txt │ │ │ ├── x49y41.txt │ │ │ ├── x49y42.txt │ │ │ ├── x49y43.txt │ │ │ ├── x49y47.txt │ │ │ ├── x49y48.txt │ │ │ ├── x49y49.txt │ │ │ ├── x49y50.txt │ │ │ ├── x50y39.txt │ │ │ ├── x50y40.txt │ │ │ ├── x50y41.txt │ │ │ ├── x50y42.txt │ │ │ ├── x50y43.txt │ │ │ ├── x50y47.txt │ │ │ ├── x50y48.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x51y39.txt │ │ │ ├── x51y40.txt │ │ │ ├── x51y41.txt │ │ │ ├── x51y42.txt │ │ │ ├── x51y43.txt │ │ │ ├── x51y44.txt │ │ │ ├── x51y45.txt │ │ │ ├── x51y46.txt │ │ │ ├── x51y47.txt │ │ │ ├── x51y48.txt │ │ │ ├── x51y49.txt │ │ │ ├── x52y39.txt │ │ │ ├── x52y40.txt │ │ │ ├── x52y41.txt │ │ │ ├── x52y42.txt │ │ │ ├── x52y43.txt │ │ │ ├── x52y44.txt │ │ │ ├── x52y45.txt │ │ │ ├── x52y46.txt │ │ │ ├── x52y47.txt │ │ │ ├── x52y48.txt │ │ │ ├── x52y49.txt │ │ │ ├── x53y39.txt │ │ │ ├── x53y40.txt │ │ │ ├── x53y41.txt │ │ │ ├── x53y42.txt │ │ │ ├── x53y43.txt │ │ │ ├── x53y44.txt │ │ │ ├── x53y45.txt │ │ │ ├── x53y46.txt │ │ │ ├── x53y47.txt │ │ │ ├── x53y48.txt │ │ │ ├── x53y49.txt │ │ │ ├── x54y42.txt │ │ │ ├── x54y43.txt │ │ │ ├── x54y44.txt │ │ │ ├── x54y45.txt │ │ │ ├── x54y46.txt │ │ │ ├── x54y47.txt │ │ │ ├── x54y48.txt │ │ │ ├── x54y49.txt │ │ │ ├── x55y43.txt │ │ │ ├── x55y44.txt │ │ │ ├── x55y45.txt │ │ │ ├── x55y46.txt │ │ │ ├── x55y47.txt │ │ │ ├── x56y43.txt │ │ │ ├── x56y44.txt │ │ │ ├── x56y45.txt │ │ │ ├── x56y46.txt │ │ │ ├── x56y47.txt │ │ │ ├── x56y48.txt │ │ │ ├── x56y49.txt │ │ │ └── x56y50.txt │ ├── main.cpp │ └── maps │ │ └── spacestation2 │ │ ├── x48y41.txt │ │ ├── x48y42.txt │ │ ├── x48y43.txt │ │ ├── x49y41.txt │ │ ├── x49y42.txt │ │ ├── x49y43.txt │ │ ├── x49y47.txt │ │ ├── x49y48.txt │ │ ├── x49y49.txt │ │ ├── x49y50.txt │ │ ├── x50y39.txt │ │ ├── x50y40.txt │ │ ├── x50y41.txt │ │ ├── x50y42.txt │ │ ├── x50y43.txt │ │ ├── x50y47.txt │ │ ├── x50y48.txt │ │ ├── x50y49.txt │ │ ├── x50y50.txt │ │ ├── x51y39.txt │ │ ├── x51y40.txt │ │ ├── x51y41.txt │ │ ├── x51y42.txt │ │ ├── x51y43.txt │ │ ├── x51y44.txt │ │ ├── x51y45.txt │ │ ├── x51y46.txt │ │ ├── x51y47.txt │ │ ├── x51y48.txt │ │ ├── x51y49.txt │ │ ├── x52y39.txt │ │ ├── x52y40.txt │ │ ├── x52y41.txt │ │ ├── x52y42.txt │ │ ├── x52y43.txt │ │ ├── x52y44.txt │ │ ├── x52y45.txt │ │ ├── x52y46.txt │ │ ├── x52y47.txt │ │ ├── x52y48.txt │ │ ├── x52y49.txt │ │ ├── x53y39.txt │ │ ├── x53y40.txt │ │ ├── x53y41.txt │ │ ├── x53y42.txt │ │ ├── x53y43.txt │ │ ├── x53y44.txt │ │ ├── x53y45.txt │ │ ├── x53y46.txt │ │ ├── x53y47.txt │ │ ├── x53y48.txt │ │ ├── x53y49.txt │ │ ├── x54y42.txt │ │ ├── x54y43.txt │ │ ├── x54y44.txt │ │ ├── x54y45.txt │ │ ├── x54y46.txt │ │ ├── x54y47.txt │ │ ├── x54y48.txt │ │ ├── x54y49.txt │ │ ├── x55y43.txt │ │ ├── x55y44.txt │ │ ├── x55y45.txt │ │ ├── x55y46.txt │ │ ├── x55y47.txt │ │ ├── x56y43.txt │ │ ├── x56y44.txt │ │ ├── x56y45.txt │ │ ├── x56y46.txt │ │ ├── x56y47.txt │ │ ├── x56y48.txt │ │ ├── x56y49.txt │ │ └── x56y50.txt ├── Tower Map Editor │ ├── imports │ │ ├── tower (background).txt │ │ ├── tower (foreground).txt │ │ └── tower.txt │ ├── main.cpp │ └── maps │ │ ├── tower (background).txt │ │ ├── tower (foreground).txt │ │ └── tower.txt ├── Towerhallways Editor │ ├── imports │ │ └── towerhallway │ │ │ ├── x50y50.txt │ │ │ ├── x52y50.txt │ │ │ └── x53y50.txt │ ├── main.cpp │ └── maps │ │ └── towerhallway │ │ ├── x50y50.txt │ │ ├── x52y50.txt │ │ └── x53y50.txt ├── Warp Zone Map Editor │ ├── imports │ │ └── warp │ │ │ ├── old │ │ │ ├── x50y50.txt │ │ │ └── x54y50.txt │ │ │ ├── x49y49.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x50y51.txt │ │ │ ├── x51y49.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x52y49.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y52.txt │ │ │ ├── x54y49.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y52.txt │ │ │ ├── x55y49.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ └── x55y52.txt │ ├── main.cpp │ └── maps │ │ └── warp │ │ ├── old │ │ ├── x50y50.txt │ │ └── x54y50.txt │ │ ├── x49y49.txt │ │ ├── x50y49.txt │ │ ├── x50y50.txt │ │ ├── x50y51.txt │ │ ├── x51y49.txt │ │ ├── x51y50.txt │ │ ├── x51y51.txt │ │ ├── x52y49.txt │ │ ├── x52y50.txt │ │ ├── x52y51.txt │ │ ├── x52y52.txt │ │ ├── x53y49.txt │ │ ├── x53y50.txt │ │ ├── x53y51.txt │ │ ├── x53y52.txt │ │ ├── x54y49.txt │ │ ├── x54y50.txt │ │ ├── x54y51.txt │ │ ├── x54y52.txt │ │ ├── x55y49.txt │ │ ├── x55y50.txt │ │ ├── x55y51.txt │ │ └── x55y52.txt ├── World Map Fork (for Eurogamer) │ ├── areamap.txt │ ├── areamapin.txt │ ├── backup │ │ └── imports │ │ │ ├── lab │ │ │ ├── x48y52.txt │ │ │ ├── x48y53.txt │ │ │ ├── x49y51.txt │ │ │ ├── x49y52.txt │ │ │ ├── x49y53.txt │ │ │ ├── x49y54.txt │ │ │ ├── x49y55.txt │ │ │ ├── x50y50.txt │ │ │ ├── x50y51.txt │ │ │ ├── x50y52.txt │ │ │ ├── x50y53.txt │ │ │ ├── x50y54.txt │ │ │ ├── x50y55.txt │ │ │ ├── x50y58.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x51y53.txt │ │ │ ├── x51y54.txt │ │ │ ├── x51y55.txt │ │ │ ├── x51y58.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x52y53.txt │ │ │ ├── x52y54.txt │ │ │ ├── x52y55.txt │ │ │ ├── x52y56.txt │ │ │ ├── x52y57.txt │ │ │ ├── x52y58.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y54.txt │ │ │ ├── x53y55.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y54.txt │ │ │ ├── x54y55.txt │ │ │ ├── x55y49.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ ├── x55y52.txt │ │ │ ├── x55y53.txt │ │ │ └── x55y54.txt │ │ │ ├── other │ │ │ ├── x100y100.txt │ │ │ ├── x100y101.txt │ │ │ ├── x100y102.txt │ │ │ ├── x100y103.txt │ │ │ ├── x100y104.txt │ │ │ ├── x100y105.txt │ │ │ ├── x100y106.txt │ │ │ ├── x100y107.txt │ │ │ ├── x100y108.txt │ │ │ ├── x100y109.txt │ │ │ ├── x100y110.txt │ │ │ ├── x100y112.txt │ │ │ ├── x100y113.txt │ │ │ ├── x100y114.txt │ │ │ ├── x100y115.txt │ │ │ ├── x100y116.txt │ │ │ ├── x101y102.txt │ │ │ ├── x101y103.txt │ │ │ ├── x101y104.txt │ │ │ ├── x101y105.txt │ │ │ ├── x101y106.txt │ │ │ ├── x101y108.txt │ │ │ ├── x101y109.txt │ │ │ ├── x101y110.txt │ │ │ ├── x101y112.txt │ │ │ ├── x101y113.txt │ │ │ ├── x101y114.txt │ │ │ ├── x101y115.txt │ │ │ ├── x101y116.txt │ │ │ ├── x102y102.txt │ │ │ ├── x102y103.txt │ │ │ ├── x102y105.txt │ │ │ ├── x102y106.txt │ │ │ ├── x102y108.txt │ │ │ ├── x102y109.txt │ │ │ ├── x102y110.txt │ │ │ ├── x102y111.txt │ │ │ ├── x102y112.txt │ │ │ ├── x102y113.txt │ │ │ ├── x102y114.txt │ │ │ ├── x102y115.txt │ │ │ ├── x103y102.txt │ │ │ ├── x103y103.txt │ │ │ ├── x103y105.txt │ │ │ ├── x103y106.txt │ │ │ ├── x103y107.txt │ │ │ ├── x103y108.txt │ │ │ ├── x103y109.txt │ │ │ ├── x103y110.txt │ │ │ ├── x103y111.txt │ │ │ ├── x103y112.txt │ │ │ ├── x103y113.txt │ │ │ ├── x103y115.txt │ │ │ ├── x104y105.txt │ │ │ ├── x104y107.txt │ │ │ ├── x104y109.txt │ │ │ ├── x104y110.txt │ │ │ ├── x104y111.txt │ │ │ ├── x104y112.txt │ │ │ ├── x104y113.txt │ │ │ ├── x104y114.txt │ │ │ ├── x104y115.txt │ │ │ ├── x105y102.txt │ │ │ ├── x105y103.txt │ │ │ ├── x105y104.txt │ │ │ ├── x105y105.txt │ │ │ ├── x105y106.txt │ │ │ ├── x105y107.txt │ │ │ ├── x105y108.txt │ │ │ ├── x105y109.txt │ │ │ ├── x105y110.txt │ │ │ ├── x105y111.txt │ │ │ ├── x105y112.txt │ │ │ ├── x105y113.txt │ │ │ ├── x105y114.txt │ │ │ ├── x106y102.txt │ │ │ ├── x106y104.txt │ │ │ ├── x106y105.txt │ │ │ ├── x106y106.txt │ │ │ ├── x106y107.txt │ │ │ ├── x106y108.txt │ │ │ ├── x106y109.txt │ │ │ ├── x106y110.txt │ │ │ ├── x106y111.txt │ │ │ ├── x106y112.txt │ │ │ ├── x106y113.txt │ │ │ ├── x106y114.txt │ │ │ ├── x107y102.txt │ │ │ ├── x107y103.txt │ │ │ ├── x107y104.txt │ │ │ ├── x107y105.txt │ │ │ ├── x107y106.txt │ │ │ ├── x107y107.txt │ │ │ ├── x107y108.txt │ │ │ ├── x107y109.txt │ │ │ ├── x107y111.txt │ │ │ ├── x107y114.txt │ │ │ ├── x108y100.txt │ │ │ ├── x108y101.txt │ │ │ ├── x108y102.txt │ │ │ ├── x108y103.txt │ │ │ ├── x108y104.txt │ │ │ ├── x108y105.txt │ │ │ ├── x108y111.txt │ │ │ ├── x108y112.txt │ │ │ ├── x108y113.txt │ │ │ ├── x108y114.txt │ │ │ ├── x108y115.txt │ │ │ ├── x108y116.txt │ │ │ ├── x108y117.txt │ │ │ ├── x108y118.txt │ │ │ ├── x108y119.txt │ │ │ ├── x110y100.txt │ │ │ ├── x110y101.txt │ │ │ ├── x110y102.txt │ │ │ ├── x110y103.txt │ │ │ ├── x110y117.txt │ │ │ ├── x110y118.txt │ │ │ ├── x110y119.txt │ │ │ ├── x111y100.txt │ │ │ ├── x111y101.txt │ │ │ ├── x111y102.txt │ │ │ ├── x111y103.txt │ │ │ ├── x111y117.txt │ │ │ ├── x111y118.txt │ │ │ ├── x111y119.txt │ │ │ ├── x112y100.txt │ │ │ ├── x112y101.txt │ │ │ ├── x112y102.txt │ │ │ ├── x112y117.txt │ │ │ ├── x112y118.txt │ │ │ ├── x112y119.txt │ │ │ ├── x113y101.txt │ │ │ ├── x113y102.txt │ │ │ ├── x113y117.txt │ │ │ ├── x113y118.txt │ │ │ ├── x113y119.txt │ │ │ ├── x114y117.txt │ │ │ ├── x116y104.txt │ │ │ ├── x117y104.txt │ │ │ ├── x117y105.txt │ │ │ ├── x118y104.txt │ │ │ ├── x118y105.txt │ │ │ ├── x119y104.txt │ │ │ ├── x119y105.txt │ │ │ ├── x119y109.txt │ │ │ ├── x119y110.txt │ │ │ ├── x119y112.txt │ │ │ └── x119y113.txt │ │ │ ├── spacestation2 │ │ │ ├── x48y41.txt │ │ │ ├── x48y42.txt │ │ │ ├── x48y43.txt │ │ │ ├── x49y41.txt │ │ │ ├── x49y42.txt │ │ │ ├── x49y43.txt │ │ │ ├── x49y47.txt │ │ │ ├── x49y48.txt │ │ │ ├── x49y49.txt │ │ │ ├── x49y50.txt │ │ │ ├── x50y39.txt │ │ │ ├── x50y40.txt │ │ │ ├── x50y41.txt │ │ │ ├── x50y42.txt │ │ │ ├── x50y43.txt │ │ │ ├── x50y47.txt │ │ │ ├── x50y48.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x51y39.txt │ │ │ ├── x51y40.txt │ │ │ ├── x51y41.txt │ │ │ ├── x51y42.txt │ │ │ ├── x51y43.txt │ │ │ ├── x51y44.txt │ │ │ ├── x51y45.txt │ │ │ ├── x51y46.txt │ │ │ ├── x51y47.txt │ │ │ ├── x51y48.txt │ │ │ ├── x51y49.txt │ │ │ ├── x52y39.txt │ │ │ ├── x52y40.txt │ │ │ ├── x52y41.txt │ │ │ ├── x52y42.txt │ │ │ ├── x52y43.txt │ │ │ ├── x52y44.txt │ │ │ ├── x52y45.txt │ │ │ ├── x52y46.txt │ │ │ ├── x52y47.txt │ │ │ ├── x52y48.txt │ │ │ ├── x52y49.txt │ │ │ ├── x53y39.txt │ │ │ ├── x53y40.txt │ │ │ ├── x53y41.txt │ │ │ ├── x53y42.txt │ │ │ ├── x53y43.txt │ │ │ ├── x53y44.txt │ │ │ ├── x53y45.txt │ │ │ ├── x53y46.txt │ │ │ ├── x53y47.txt │ │ │ ├── x53y48.txt │ │ │ ├── x53y49.txt │ │ │ ├── x54y42.txt │ │ │ ├── x54y43.txt │ │ │ ├── x54y44.txt │ │ │ ├── x54y45.txt │ │ │ ├── x54y46.txt │ │ │ ├── x54y47.txt │ │ │ ├── x54y48.txt │ │ │ ├── x54y49.txt │ │ │ ├── x55y43.txt │ │ │ ├── x55y44.txt │ │ │ ├── x55y45.txt │ │ │ ├── x55y46.txt │ │ │ ├── x55y47.txt │ │ │ ├── x56y43.txt │ │ │ ├── x56y44.txt │ │ │ ├── x56y45.txt │ │ │ ├── x56y46.txt │ │ │ ├── x56y47.txt │ │ │ ├── x56y48.txt │ │ │ ├── x56y49.txt │ │ │ └── x56y50.txt │ │ │ └── warp │ │ │ ├── old │ │ │ ├── x50y50.txt │ │ │ └── x54y50.txt │ │ │ ├── x49y49.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x51y49.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x52y49.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y52.txt │ │ │ ├── x54y49.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y52.txt │ │ │ ├── x55y49.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ └── x55y52.txt │ ├── imports │ │ ├── lab │ │ │ ├── x48y52.txt │ │ │ ├── x48y53.txt │ │ │ ├── x49y51.txt │ │ │ ├── x49y52.txt │ │ │ ├── x49y53.txt │ │ │ ├── x49y54.txt │ │ │ ├── x49y55.txt │ │ │ ├── x50y50.txt │ │ │ ├── x50y51.txt │ │ │ ├── x50y52.txt │ │ │ ├── x50y53.txt │ │ │ ├── x50y54.txt │ │ │ ├── x50y55.txt │ │ │ ├── x50y58.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x51y53.txt │ │ │ ├── x51y54.txt │ │ │ ├── x51y55.txt │ │ │ ├── x51y58.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x52y53.txt │ │ │ ├── x52y54.txt │ │ │ ├── x52y55.txt │ │ │ ├── x52y56.txt │ │ │ ├── x52y57.txt │ │ │ ├── x52y58.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y54.txt │ │ │ ├── x53y55.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y54.txt │ │ │ ├── x54y55.txt │ │ │ ├── x55y49.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ ├── x55y52.txt │ │ │ ├── x55y53.txt │ │ │ └── x55y54.txt │ │ ├── other │ │ │ ├── x100y100.txt │ │ │ ├── x100y101.txt │ │ │ ├── x100y102.txt │ │ │ ├── x100y103.txt │ │ │ ├── x100y104.txt │ │ │ ├── x100y105.txt │ │ │ ├── x100y106.txt │ │ │ ├── x100y107.txt │ │ │ ├── x100y108.txt │ │ │ ├── x100y109.txt │ │ │ ├── x100y110.txt │ │ │ ├── x100y111.txt │ │ │ ├── x100y112.txt │ │ │ ├── x100y113.txt │ │ │ ├── x100y114.txt │ │ │ ├── x100y115.txt │ │ │ ├── x100y116.txt │ │ │ ├── x100y117.txt │ │ │ ├── x101y102.txt │ │ │ ├── x101y103.txt │ │ │ ├── x101y104.txt │ │ │ ├── x101y105.txt │ │ │ ├── x101y106.txt │ │ │ ├── x101y108.txt │ │ │ ├── x101y109.txt │ │ │ ├── x101y110.txt │ │ │ ├── x101y111.txt │ │ │ ├── x101y112.txt │ │ │ ├── x101y113.txt │ │ │ ├── x101y114.txt │ │ │ ├── x101y115.txt │ │ │ ├── x101y116.txt │ │ │ ├── x102y102.txt │ │ │ ├── x102y103.txt │ │ │ ├── x102y105.txt │ │ │ ├── x102y106.txt │ │ │ ├── x102y108.txt │ │ │ ├── x102y109.txt │ │ │ ├── x102y110.txt │ │ │ ├── x102y111.txt │ │ │ ├── x102y112.txt │ │ │ ├── x102y113.txt │ │ │ ├── x102y114.txt │ │ │ ├── x102y115.txt │ │ │ ├── x103y102.txt │ │ │ ├── x103y103.txt │ │ │ ├── x103y105.txt │ │ │ ├── x103y106.txt │ │ │ ├── x103y107.txt │ │ │ ├── x103y108.txt │ │ │ ├── x103y109.txt │ │ │ ├── x103y110.txt │ │ │ ├── x103y111.txt │ │ │ ├── x103y112.txt │ │ │ ├── x103y113.txt │ │ │ ├── x103y115.txt │ │ │ ├── x104y105.txt │ │ │ ├── x104y106.txt │ │ │ ├── x104y107.txt │ │ │ ├── x104y109.txt │ │ │ ├── x104y110.txt │ │ │ ├── x104y111.txt │ │ │ ├── x104y112.txt │ │ │ ├── x104y113.txt │ │ │ ├── x104y114.txt │ │ │ ├── x104y115.txt │ │ │ ├── x105y102.txt │ │ │ ├── x105y103.txt │ │ │ ├── x105y104.txt │ │ │ ├── x105y105.txt │ │ │ ├── x105y106.txt │ │ │ ├── x105y107.txt │ │ │ ├── x105y108.txt │ │ │ ├── x105y109.txt │ │ │ ├── x105y110.txt │ │ │ ├── x105y111.txt │ │ │ ├── x105y112.txt │ │ │ ├── x105y113.txt │ │ │ ├── x105y114.txt │ │ │ ├── x105y115.txt │ │ │ ├── x105y118.txt │ │ │ ├── x105y119.txt │ │ │ ├── x106y102.txt │ │ │ ├── x106y104.txt │ │ │ ├── x106y105.txt │ │ │ ├── x106y106.txt │ │ │ ├── x106y107.txt │ │ │ ├── x106y108.txt │ │ │ ├── x106y109.txt │ │ │ ├── x106y110.txt │ │ │ ├── x106y111.txt │ │ │ ├── x106y112.txt │ │ │ ├── x106y113.txt │ │ │ ├── x106y114.txt │ │ │ ├── x106y115.txt │ │ │ ├── x106y118.txt │ │ │ ├── x106y119.txt │ │ │ ├── x107y101.txt │ │ │ ├── x107y102.txt │ │ │ ├── x107y103.txt │ │ │ ├── x107y104.txt │ │ │ ├── x107y105.txt │ │ │ ├── x107y106.txt │ │ │ ├── x107y107.txt │ │ │ ├── x107y108.txt │ │ │ ├── x107y109.txt │ │ │ ├── x107y110.txt │ │ │ ├── x107y111.txt │ │ │ ├── x107y112.txt │ │ │ ├── x107y114.txt │ │ │ ├── x108y100.txt │ │ │ ├── x108y101.txt │ │ │ ├── x108y102.txt │ │ │ ├── x108y103.txt │ │ │ ├── x108y104.txt │ │ │ ├── x108y105.txt │ │ │ ├── x108y106.txt │ │ │ ├── x108y107.txt │ │ │ ├── x108y108.txt │ │ │ ├── x108y110.txt │ │ │ ├── x108y111.txt │ │ │ ├── x108y112.txt │ │ │ ├── x108y113.txt │ │ │ ├── x108y114.txt │ │ │ ├── x108y115.txt │ │ │ ├── x108y116.txt │ │ │ ├── x108y117.txt │ │ │ ├── x108y118.txt │ │ │ ├── x108y119.txt │ │ │ ├── x110y100.txt │ │ │ ├── x110y101.txt │ │ │ ├── x110y102.txt │ │ │ ├── x110y103.txt │ │ │ ├── x110y108.txt │ │ │ ├── x110y109.txt │ │ │ ├── x110y110.txt │ │ │ ├── x110y111.txt │ │ │ ├── x110y112.txt │ │ │ ├── x110y113.txt │ │ │ ├── x110y114.txt │ │ │ ├── x110y115.txt │ │ │ ├── x110y116.txt │ │ │ ├── x110y117.txt │ │ │ ├── x110y118.txt │ │ │ ├── x110y119.txt │ │ │ ├── x111y100.txt │ │ │ ├── x111y101.txt │ │ │ ├── x111y102.txt │ │ │ ├── x111y103.txt │ │ │ ├── x111y108.txt │ │ │ ├── x111y109.txt │ │ │ ├── x111y110.txt │ │ │ ├── x111y116.txt │ │ │ ├── x111y117.txt │ │ │ ├── x111y118.txt │ │ │ ├── x111y119.txt │ │ │ ├── x112y100.txt │ │ │ ├── x112y101.txt │ │ │ ├── x112y102.txt │ │ │ ├── x112y108.txt │ │ │ ├── x112y109.txt │ │ │ ├── x112y110.txt │ │ │ ├── x112y116.txt │ │ │ ├── x112y117.txt │ │ │ ├── x112y118.txt │ │ │ ├── x112y119.txt │ │ │ ├── x113y101.txt │ │ │ ├── x113y102.txt │ │ │ ├── x113y114.txt │ │ │ ├── x113y115.txt │ │ │ ├── x113y116.txt │ │ │ ├── x113y117.txt │ │ │ ├── x113y118.txt │ │ │ ├── x113y119.txt │ │ │ ├── x114y114.txt │ │ │ ├── x114y116.txt │ │ │ ├── x114y117.txt │ │ │ ├── x114y118.txt │ │ │ ├── x114y119.txt │ │ │ ├── x115y114.txt │ │ │ ├── x115y116.txt │ │ │ ├── x115y117.txt │ │ │ ├── x115y118.txt │ │ │ ├── x115y119.txt │ │ │ ├── x116y104.txt │ │ │ ├── x116y114.txt │ │ │ ├── x116y117.txt │ │ │ ├── x116y119.txt │ │ │ ├── x117y104.txt │ │ │ ├── x117y105.txt │ │ │ ├── x117y112.txt │ │ │ ├── x117y113.txt │ │ │ ├── x117y114.txt │ │ │ ├── x117y115.txt │ │ │ ├── x117y116.txt │ │ │ ├── x117y117.txt │ │ │ ├── x117y118.txt │ │ │ ├── x117y119.txt │ │ │ ├── x118y104.txt │ │ │ ├── x118y105.txt │ │ │ ├── x118y115.txt │ │ │ ├── x118y117.txt │ │ │ ├── x118y119.txt │ │ │ ├── x119y104.txt │ │ │ ├── x119y105.txt │ │ │ ├── x119y109.txt │ │ │ ├── x119y110.txt │ │ │ ├── x119y111.txt │ │ │ ├── x119y112.txt │ │ │ ├── x119y113.txt │ │ │ ├── x119y114.txt │ │ │ ├── x119y115.txt │ │ │ ├── x119y116.txt │ │ │ ├── x119y117.txt │ │ │ ├── x119y118.txt │ │ │ └── x119y119.txt │ │ ├── spacestation2 │ │ │ ├── x48y41.txt │ │ │ ├── x48y42.txt │ │ │ ├── x48y43.txt │ │ │ ├── x49y41.txt │ │ │ ├── x49y42.txt │ │ │ ├── x49y43.txt │ │ │ ├── x49y47.txt │ │ │ ├── x49y48.txt │ │ │ ├── x49y49.txt │ │ │ ├── x49y50.txt │ │ │ ├── x50y39.txt │ │ │ ├── x50y40.txt │ │ │ ├── x50y41.txt │ │ │ ├── x50y42.txt │ │ │ ├── x50y43.txt │ │ │ ├── x50y47.txt │ │ │ ├── x50y48.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x51y39.txt │ │ │ ├── x51y40.txt │ │ │ ├── x51y41.txt │ │ │ ├── x51y42.txt │ │ │ ├── x51y43.txt │ │ │ ├── x51y44.txt │ │ │ ├── x51y45.txt │ │ │ ├── x51y46.txt │ │ │ ├── x51y47.txt │ │ │ ├── x51y48.txt │ │ │ ├── x51y49.txt │ │ │ ├── x52y39.txt │ │ │ ├── x52y40.txt │ │ │ ├── x52y41.txt │ │ │ ├── x52y42.txt │ │ │ ├── x52y43.txt │ │ │ ├── x52y44.txt │ │ │ ├── x52y45.txt │ │ │ ├── x52y46.txt │ │ │ ├── x52y47.txt │ │ │ ├── x52y48.txt │ │ │ ├── x52y49.txt │ │ │ ├── x53y39.txt │ │ │ ├── x53y40.txt │ │ │ ├── x53y41.txt │ │ │ ├── x53y42.txt │ │ │ ├── x53y43.txt │ │ │ ├── x53y44.txt │ │ │ ├── x53y45.txt │ │ │ ├── x53y46.txt │ │ │ ├── x53y47.txt │ │ │ ├── x53y48.txt │ │ │ ├── x53y49.txt │ │ │ ├── x54y42.txt │ │ │ ├── x54y43.txt │ │ │ ├── x54y44.txt │ │ │ ├── x54y45.txt │ │ │ ├── x54y46.txt │ │ │ ├── x54y47.txt │ │ │ ├── x54y48.txt │ │ │ ├── x54y49.txt │ │ │ ├── x55y43.txt │ │ │ ├── x55y44.txt │ │ │ ├── x55y45.txt │ │ │ ├── x55y46.txt │ │ │ ├── x55y47.txt │ │ │ ├── x56y43.txt │ │ │ ├── x56y44.txt │ │ │ ├── x56y45.txt │ │ │ ├── x56y46.txt │ │ │ ├── x56y47.txt │ │ │ ├── x56y48.txt │ │ │ ├── x56y49.txt │ │ │ └── x56y50.txt │ │ └── warp │ │ │ ├── old │ │ │ ├── x50y50.txt │ │ │ └── x54y50.txt │ │ │ ├── x49y49.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x51y49.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x52y49.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y52.txt │ │ │ ├── x54y49.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y52.txt │ │ │ ├── x55y49.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ └── x55y52.txt │ ├── input.hpp │ ├── logic.hpp │ ├── main.cpp │ ├── map.hpp │ ├── maps │ │ ├── lab │ │ │ ├── x48y52.txt │ │ │ ├── x48y53.txt │ │ │ ├── x49y51.txt │ │ │ ├── x49y52.txt │ │ │ ├── x49y53.txt │ │ │ ├── x49y54.txt │ │ │ ├── x49y55.txt │ │ │ ├── x50y50.txt │ │ │ ├── x50y51.txt │ │ │ ├── x50y52.txt │ │ │ ├── x50y53.txt │ │ │ ├── x50y54.txt │ │ │ ├── x50y55.txt │ │ │ ├── x50y58.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x51y53.txt │ │ │ ├── x51y54.txt │ │ │ ├── x51y55.txt │ │ │ ├── x51y58.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x52y53.txt │ │ │ ├── x52y54.txt │ │ │ ├── x52y55.txt │ │ │ ├── x52y56.txt │ │ │ ├── x52y57.txt │ │ │ ├── x52y58.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y54.txt │ │ │ ├── x53y55.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y54.txt │ │ │ ├── x54y55.txt │ │ │ ├── x55y49.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ ├── x55y52.txt │ │ │ ├── x55y53.txt │ │ │ └── x55y54.txt │ │ ├── other │ │ │ ├── x100y100.txt │ │ │ ├── x100y101.txt │ │ │ ├── x100y102.txt │ │ │ ├── x100y103.txt │ │ │ ├── x100y104.txt │ │ │ ├── x100y105.txt │ │ │ ├── x100y106.txt │ │ │ ├── x100y107.txt │ │ │ ├── x100y108.txt │ │ │ ├── x100y109.txt │ │ │ ├── x100y110.txt │ │ │ ├── x100y111.txt │ │ │ ├── x100y112.txt │ │ │ ├── x100y113.txt │ │ │ ├── x100y114.txt │ │ │ ├── x100y115.txt │ │ │ ├── x100y116.txt │ │ │ ├── x100y117.txt │ │ │ ├── x101y102.txt │ │ │ ├── x101y103.txt │ │ │ ├── x101y104.txt │ │ │ ├── x101y105.txt │ │ │ ├── x101y106.txt │ │ │ ├── x101y108.txt │ │ │ ├── x101y109.txt │ │ │ ├── x101y110.txt │ │ │ ├── x101y111.txt │ │ │ ├── x101y112.txt │ │ │ ├── x101y113.txt │ │ │ ├── x101y114.txt │ │ │ ├── x101y115.txt │ │ │ ├── x101y116.txt │ │ │ ├── x102y102.txt │ │ │ ├── x102y103.txt │ │ │ ├── x102y105.txt │ │ │ ├── x102y106.txt │ │ │ ├── x102y108.txt │ │ │ ├── x102y109.txt │ │ │ ├── x102y110.txt │ │ │ ├── x102y111.txt │ │ │ ├── x102y112.txt │ │ │ ├── x102y113.txt │ │ │ ├── x102y114.txt │ │ │ ├── x102y115.txt │ │ │ ├── x103y102.txt │ │ │ ├── x103y103.txt │ │ │ ├── x103y105.txt │ │ │ ├── x103y106.txt │ │ │ ├── x103y107.txt │ │ │ ├── x103y108.txt │ │ │ ├── x103y109.txt │ │ │ ├── x103y110.txt │ │ │ ├── x103y111.txt │ │ │ ├── x103y112.txt │ │ │ ├── x103y113.txt │ │ │ ├── x103y115.txt │ │ │ ├── x104y105.txt │ │ │ ├── x104y106.txt │ │ │ ├── x104y107.txt │ │ │ ├── x104y109.txt │ │ │ ├── x104y110.txt │ │ │ ├── x104y111.txt │ │ │ ├── x104y112.txt │ │ │ ├── x104y113.txt │ │ │ ├── x104y114.txt │ │ │ ├── x104y115.txt │ │ │ ├── x105y102.txt │ │ │ ├── x105y103.txt │ │ │ ├── x105y104.txt │ │ │ ├── x105y105.txt │ │ │ ├── x105y106.txt │ │ │ ├── x105y107.txt │ │ │ ├── x105y108.txt │ │ │ ├── x105y109.txt │ │ │ ├── x105y110.txt │ │ │ ├── x105y111.txt │ │ │ ├── x105y112.txt │ │ │ ├── x105y113.txt │ │ │ ├── x105y114.txt │ │ │ ├── x105y115.txt │ │ │ ├── x105y118.txt │ │ │ ├── x105y119.txt │ │ │ ├── x106y102.txt │ │ │ ├── x106y104.txt │ │ │ ├── x106y105.txt │ │ │ ├── x106y106.txt │ │ │ ├── x106y107.txt │ │ │ ├── x106y108.txt │ │ │ ├── x106y109.txt │ │ │ ├── x106y110.txt │ │ │ ├── x106y111.txt │ │ │ ├── x106y112.txt │ │ │ ├── x106y113.txt │ │ │ ├── x106y114.txt │ │ │ ├── x106y115.txt │ │ │ ├── x106y118.txt │ │ │ ├── x106y119.txt │ │ │ ├── x107y101.txt │ │ │ ├── x107y102.txt │ │ │ ├── x107y103.txt │ │ │ ├── x107y104.txt │ │ │ ├── x107y105.txt │ │ │ ├── x107y106.txt │ │ │ ├── x107y107.txt │ │ │ ├── x107y108.txt │ │ │ ├── x107y109.txt │ │ │ ├── x107y110.txt │ │ │ ├── x107y111.txt │ │ │ ├── x107y112.txt │ │ │ ├── x107y114.txt │ │ │ ├── x108y100.txt │ │ │ ├── x108y101.txt │ │ │ ├── x108y102.txt │ │ │ ├── x108y103.txt │ │ │ ├── x108y104.txt │ │ │ ├── x108y105.txt │ │ │ ├── x108y106.txt │ │ │ ├── x108y107.txt │ │ │ ├── x108y108.txt │ │ │ ├── x108y110.txt │ │ │ ├── x108y111.txt │ │ │ ├── x108y112.txt │ │ │ ├── x108y113.txt │ │ │ ├── x108y114.txt │ │ │ ├── x108y115.txt │ │ │ ├── x108y116.txt │ │ │ ├── x108y117.txt │ │ │ ├── x108y118.txt │ │ │ ├── x108y119.txt │ │ │ ├── x110y100.txt │ │ │ ├── x110y103.txt │ │ │ ├── x110y108.txt │ │ │ ├── x110y109.txt │ │ │ ├── x110y110.txt │ │ │ ├── x110y111.txt │ │ │ ├── x110y112.txt │ │ │ ├── x110y113.txt │ │ │ ├── x110y114.txt │ │ │ ├── x110y115.txt │ │ │ ├── x110y116.txt │ │ │ ├── x110y117.txt │ │ │ ├── x110y118.txt │ │ │ ├── x110y119.txt │ │ │ ├── x111y101.txt │ │ │ ├── x111y102.txt │ │ │ ├── x111y103.txt │ │ │ ├── x111y108.txt │ │ │ ├── x111y109.txt │ │ │ ├── x111y110.txt │ │ │ ├── x111y116.txt │ │ │ ├── x111y117.txt │ │ │ ├── x112y100.txt │ │ │ ├── x112y101.txt │ │ │ ├── x112y102.txt │ │ │ ├── x112y108.txt │ │ │ ├── x112y109.txt │ │ │ ├── x112y110.txt │ │ │ ├── x112y116.txt │ │ │ ├── x112y117.txt │ │ │ ├── x112y119.txt │ │ │ ├── x113y101.txt │ │ │ ├── x113y102.txt │ │ │ ├── x113y114.txt │ │ │ ├── x113y115.txt │ │ │ ├── x113y116.txt │ │ │ ├── x113y117.txt │ │ │ ├── x113y118.txt │ │ │ ├── x113y119.txt │ │ │ ├── x114y114.txt │ │ │ ├── x114y116.txt │ │ │ ├── x114y117.txt │ │ │ ├── x114y118.txt │ │ │ ├── x114y119.txt │ │ │ ├── x115y114.txt │ │ │ ├── x115y116.txt │ │ │ ├── x115y117.txt │ │ │ ├── x115y118.txt │ │ │ ├── x115y119.txt │ │ │ ├── x116y104.txt │ │ │ ├── x116y114.txt │ │ │ ├── x116y117.txt │ │ │ ├── x116y119.txt │ │ │ ├── x117y104.txt │ │ │ ├── x117y105.txt │ │ │ ├── x117y112.txt │ │ │ ├── x117y113.txt │ │ │ ├── x117y114.txt │ │ │ ├── x117y115.txt │ │ │ ├── x117y116.txt │ │ │ ├── x117y117.txt │ │ │ ├── x117y118.txt │ │ │ ├── x117y119.txt │ │ │ ├── x118y104.txt │ │ │ ├── x118y105.txt │ │ │ ├── x118y115.txt │ │ │ ├── x118y117.txt │ │ │ ├── x118y119.txt │ │ │ ├── x119y104.txt │ │ │ ├── x119y105.txt │ │ │ ├── x119y109.txt │ │ │ ├── x119y110.txt │ │ │ ├── x119y111.txt │ │ │ ├── x119y112.txt │ │ │ ├── x119y113.txt │ │ │ ├── x119y114.txt │ │ │ ├── x119y115.txt │ │ │ ├── x119y116.txt │ │ │ ├── x119y117.txt │ │ │ ├── x119y118.txt │ │ │ └── x119y119.txt │ │ ├── spacestation2 │ │ │ ├── x48y41.txt │ │ │ ├── x48y42.txt │ │ │ ├── x48y43.txt │ │ │ ├── x49y41.txt │ │ │ ├── x49y42.txt │ │ │ ├── x49y43.txt │ │ │ ├── x49y47.txt │ │ │ ├── x49y48.txt │ │ │ ├── x49y49.txt │ │ │ ├── x49y50.txt │ │ │ ├── x50y39.txt │ │ │ ├── x50y40.txt │ │ │ ├── x50y41.txt │ │ │ ├── x50y42.txt │ │ │ ├── x50y43.txt │ │ │ ├── x50y47.txt │ │ │ ├── x50y48.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x51y39.txt │ │ │ ├── x51y40.txt │ │ │ ├── x51y41.txt │ │ │ ├── x51y42.txt │ │ │ ├── x51y43.txt │ │ │ ├── x51y44.txt │ │ │ ├── x51y45.txt │ │ │ ├── x51y46.txt │ │ │ ├── x51y47.txt │ │ │ ├── x51y48.txt │ │ │ ├── x51y49.txt │ │ │ ├── x52y39.txt │ │ │ ├── x52y40.txt │ │ │ ├── x52y41.txt │ │ │ ├── x52y42.txt │ │ │ ├── x52y43.txt │ │ │ ├── x52y44.txt │ │ │ ├── x52y45.txt │ │ │ ├── x52y46.txt │ │ │ ├── x52y47.txt │ │ │ ├── x52y48.txt │ │ │ ├── x52y49.txt │ │ │ ├── x53y39.txt │ │ │ ├── x53y40.txt │ │ │ ├── x53y41.txt │ │ │ ├── x53y42.txt │ │ │ ├── x53y43.txt │ │ │ ├── x53y44.txt │ │ │ ├── x53y45.txt │ │ │ ├── x53y46.txt │ │ │ ├── x53y47.txt │ │ │ ├── x53y48.txt │ │ │ ├── x53y49.txt │ │ │ ├── x54y42.txt │ │ │ ├── x54y43.txt │ │ │ ├── x54y44.txt │ │ │ ├── x54y45.txt │ │ │ ├── x54y46.txt │ │ │ ├── x54y47.txt │ │ │ ├── x54y48.txt │ │ │ ├── x54y49.txt │ │ │ ├── x55y43.txt │ │ │ ├── x55y44.txt │ │ │ ├── x55y45.txt │ │ │ ├── x55y46.txt │ │ │ ├── x55y47.txt │ │ │ ├── x56y43.txt │ │ │ ├── x56y44.txt │ │ │ ├── x56y45.txt │ │ │ ├── x56y46.txt │ │ │ ├── x56y47.txt │ │ │ ├── x56y48.txt │ │ │ ├── x56y49.txt │ │ │ └── x56y50.txt │ │ └── warp │ │ │ ├── old │ │ │ ├── x50y50.txt │ │ │ └── x54y50.txt │ │ │ ├── x49y49.txt │ │ │ ├── x50y49.txt │ │ │ ├── x50y50.txt │ │ │ ├── x51y49.txt │ │ │ ├── x51y50.txt │ │ │ ├── x51y51.txt │ │ │ ├── x51y52.txt │ │ │ ├── x52y49.txt │ │ │ ├── x52y50.txt │ │ │ ├── x52y51.txt │ │ │ ├── x52y52.txt │ │ │ ├── x53y49.txt │ │ │ ├── x53y50.txt │ │ │ ├── x53y51.txt │ │ │ ├── x53y52.txt │ │ │ ├── x54y49.txt │ │ │ ├── x54y50.txt │ │ │ ├── x54y51.txt │ │ │ ├── x54y52.txt │ │ │ ├── x55y49.txt │ │ │ ├── x55y50.txt │ │ │ ├── x55y51.txt │ │ │ └── x55y52.txt │ ├── minimap.png │ ├── misc.hpp │ ├── overworld.txt │ └── render.hpp └── World Mapping Editor │ ├── areamap.txt │ ├── areamapin.txt │ ├── backup │ └── imports │ │ ├── lab │ │ ├── x48y52.txt │ │ ├── x48y53.txt │ │ ├── x49y51.txt │ │ ├── x49y52.txt │ │ ├── x49y53.txt │ │ ├── x49y54.txt │ │ ├── x49y55.txt │ │ ├── x50y50.txt │ │ ├── x50y51.txt │ │ ├── x50y52.txt │ │ ├── x50y53.txt │ │ ├── x50y54.txt │ │ ├── x50y55.txt │ │ ├── x50y58.txt │ │ ├── x51y50.txt │ │ ├── x51y51.txt │ │ ├── x51y52.txt │ │ ├── x51y53.txt │ │ ├── x51y54.txt │ │ ├── x51y55.txt │ │ ├── x51y58.txt │ │ ├── x52y50.txt │ │ ├── x52y51.txt │ │ ├── x52y52.txt │ │ ├── x52y53.txt │ │ ├── x52y54.txt │ │ ├── x52y55.txt │ │ ├── x52y56.txt │ │ ├── x52y57.txt │ │ ├── x52y58.txt │ │ ├── x53y50.txt │ │ ├── x53y51.txt │ │ ├── x53y54.txt │ │ ├── x53y55.txt │ │ ├── x54y50.txt │ │ ├── x54y51.txt │ │ ├── x54y54.txt │ │ ├── x54y55.txt │ │ ├── x55y49.txt │ │ ├── x55y50.txt │ │ ├── x55y51.txt │ │ ├── x55y52.txt │ │ ├── x55y53.txt │ │ └── x55y54.txt │ │ ├── other │ │ ├── x100y100.txt │ │ ├── x100y101.txt │ │ ├── x100y102.txt │ │ ├── x100y103.txt │ │ ├── x100y104.txt │ │ ├── x100y105.txt │ │ ├── x100y106.txt │ │ ├── x100y107.txt │ │ ├── x100y108.txt │ │ ├── x100y109.txt │ │ ├── x100y110.txt │ │ ├── x100y112.txt │ │ ├── x100y113.txt │ │ ├── x100y114.txt │ │ ├── x100y115.txt │ │ ├── x100y116.txt │ │ ├── x101y102.txt │ │ ├── x101y103.txt │ │ ├── x101y104.txt │ │ ├── x101y105.txt │ │ ├── x101y106.txt │ │ ├── x101y108.txt │ │ ├── x101y109.txt │ │ ├── x101y110.txt │ │ ├── x101y112.txt │ │ ├── x101y113.txt │ │ ├── x101y114.txt │ │ ├── x101y115.txt │ │ ├── x101y116.txt │ │ ├── x102y102.txt │ │ ├── x102y103.txt │ │ ├── x102y105.txt │ │ ├── x102y106.txt │ │ ├── x102y108.txt │ │ ├── x102y109.txt │ │ ├── x102y110.txt │ │ ├── x102y111.txt │ │ ├── x102y112.txt │ │ ├── x102y113.txt │ │ ├── x102y114.txt │ │ ├── x102y115.txt │ │ ├── x103y102.txt │ │ ├── x103y103.txt │ │ ├── x103y105.txt │ │ ├── x103y106.txt │ │ ├── x103y107.txt │ │ ├── x103y108.txt │ │ ├── x103y109.txt │ │ ├── x103y110.txt │ │ ├── x103y111.txt │ │ ├── x103y112.txt │ │ ├── x103y113.txt │ │ ├── x103y115.txt │ │ ├── x104y105.txt │ │ ├── x104y107.txt │ │ ├── x104y109.txt │ │ ├── x104y110.txt │ │ ├── x104y111.txt │ │ ├── x104y112.txt │ │ ├── x104y113.txt │ │ ├── x104y114.txt │ │ ├── x104y115.txt │ │ ├── x105y102.txt │ │ ├── x105y103.txt │ │ ├── x105y104.txt │ │ ├── x105y105.txt │ │ ├── x105y106.txt │ │ ├── x105y107.txt │ │ ├── x105y108.txt │ │ ├── x105y109.txt │ │ ├── x105y110.txt │ │ ├── x105y111.txt │ │ ├── x105y112.txt │ │ ├── x105y113.txt │ │ ├── x105y114.txt │ │ ├── x106y102.txt │ │ ├── x106y104.txt │ │ ├── x106y105.txt │ │ ├── x106y106.txt │ │ ├── x106y107.txt │ │ ├── x106y108.txt │ │ ├── x106y109.txt │ │ ├── x106y110.txt │ │ ├── x106y111.txt │ │ ├── x106y112.txt │ │ ├── x106y113.txt │ │ ├── x106y114.txt │ │ ├── x107y102.txt │ │ ├── x107y103.txt │ │ ├── x107y104.txt │ │ ├── x107y105.txt │ │ ├── x107y106.txt │ │ ├── x107y107.txt │ │ ├── x107y108.txt │ │ ├── x107y109.txt │ │ ├── x107y111.txt │ │ ├── x107y114.txt │ │ ├── x108y100.txt │ │ ├── x108y101.txt │ │ ├── x108y102.txt │ │ ├── x108y103.txt │ │ ├── x108y104.txt │ │ ├── x108y105.txt │ │ ├── x108y111.txt │ │ ├── x108y112.txt │ │ ├── x108y113.txt │ │ ├── x108y114.txt │ │ ├── x108y115.txt │ │ ├── x108y116.txt │ │ ├── x108y117.txt │ │ ├── x108y118.txt │ │ ├── x108y119.txt │ │ ├── x110y100.txt │ │ ├── x110y101.txt │ │ ├── x110y102.txt │ │ ├── x110y103.txt │ │ ├── x110y117.txt │ │ ├── x110y118.txt │ │ ├── x110y119.txt │ │ ├── x111y100.txt │ │ ├── x111y101.txt │ │ ├── x111y102.txt │ │ ├── x111y103.txt │ │ ├── x111y117.txt │ │ ├── x111y118.txt │ │ ├── x111y119.txt │ │ ├── x112y100.txt │ │ ├── x112y101.txt │ │ ├── x112y102.txt │ │ ├── x112y117.txt │ │ ├── x112y118.txt │ │ ├── x112y119.txt │ │ ├── x113y101.txt │ │ ├── x113y102.txt │ │ ├── x113y117.txt │ │ ├── x113y118.txt │ │ ├── x113y119.txt │ │ ├── x114y117.txt │ │ ├── x116y104.txt │ │ ├── x117y104.txt │ │ ├── x117y105.txt │ │ ├── x118y104.txt │ │ ├── x118y105.txt │ │ ├── x119y104.txt │ │ ├── x119y105.txt │ │ ├── x119y109.txt │ │ ├── x119y110.txt │ │ ├── x119y112.txt │ │ └── x119y113.txt │ │ ├── spacestation2 │ │ ├── x48y41.txt │ │ ├── x48y42.txt │ │ ├── x48y43.txt │ │ ├── x49y41.txt │ │ ├── x49y42.txt │ │ ├── x49y43.txt │ │ ├── x49y47.txt │ │ ├── x49y48.txt │ │ ├── x49y49.txt │ │ ├── x49y50.txt │ │ ├── x50y39.txt │ │ ├── x50y40.txt │ │ ├── x50y41.txt │ │ ├── x50y42.txt │ │ ├── x50y43.txt │ │ ├── x50y47.txt │ │ ├── x50y48.txt │ │ ├── x50y49.txt │ │ ├── x50y50.txt │ │ ├── x51y39.txt │ │ ├── x51y40.txt │ │ ├── x51y41.txt │ │ ├── x51y42.txt │ │ ├── x51y43.txt │ │ ├── x51y44.txt │ │ ├── x51y45.txt │ │ ├── x51y46.txt │ │ ├── x51y47.txt │ │ ├── x51y48.txt │ │ ├── x51y49.txt │ │ ├── x52y39.txt │ │ ├── x52y40.txt │ │ ├── x52y41.txt │ │ ├── x52y42.txt │ │ ├── x52y43.txt │ │ ├── x52y44.txt │ │ ├── x52y45.txt │ │ ├── x52y46.txt │ │ ├── x52y47.txt │ │ ├── x52y48.txt │ │ ├── x52y49.txt │ │ ├── x53y39.txt │ │ ├── x53y40.txt │ │ ├── x53y41.txt │ │ ├── x53y42.txt │ │ ├── x53y43.txt │ │ ├── x53y44.txt │ │ ├── x53y45.txt │ │ ├── x53y46.txt │ │ ├── x53y47.txt │ │ ├── x53y48.txt │ │ ├── x53y49.txt │ │ ├── x54y42.txt │ │ ├── x54y43.txt │ │ ├── x54y44.txt │ │ ├── x54y45.txt │ │ ├── x54y46.txt │ │ ├── x54y47.txt │ │ ├── x54y48.txt │ │ ├── x54y49.txt │ │ ├── x55y43.txt │ │ ├── x55y44.txt │ │ ├── x55y45.txt │ │ ├── x55y46.txt │ │ ├── x55y47.txt │ │ ├── x56y43.txt │ │ ├── x56y44.txt │ │ ├── x56y45.txt │ │ ├── x56y46.txt │ │ ├── x56y47.txt │ │ ├── x56y48.txt │ │ ├── x56y49.txt │ │ └── x56y50.txt │ │ └── warp │ │ ├── old │ │ ├── x50y50.txt │ │ └── x54y50.txt │ │ ├── x49y49.txt │ │ ├── x50y49.txt │ │ ├── x50y50.txt │ │ ├── x51y49.txt │ │ ├── x51y50.txt │ │ ├── x51y51.txt │ │ ├── x51y52.txt │ │ ├── x52y49.txt │ │ ├── x52y50.txt │ │ ├── x52y51.txt │ │ ├── x52y52.txt │ │ ├── x53y49.txt │ │ ├── x53y50.txt │ │ ├── x53y51.txt │ │ ├── x53y52.txt │ │ ├── x54y49.txt │ │ ├── x54y50.txt │ │ ├── x54y51.txt │ │ ├── x54y52.txt │ │ ├── x55y49.txt │ │ ├── x55y50.txt │ │ ├── x55y51.txt │ │ └── x55y52.txt │ ├── imports │ ├── lab │ │ ├── x48y52.txt │ │ ├── x48y53.txt │ │ ├── x49y51.txt │ │ ├── x49y52.txt │ │ ├── x49y53.txt │ │ ├── x49y54.txt │ │ ├── x49y55.txt │ │ ├── x50y50.txt │ │ ├── x50y51.txt │ │ ├── x50y52.txt │ │ ├── x50y53.txt │ │ ├── x50y54.txt │ │ ├── x50y55.txt │ │ ├── x50y58.txt │ │ ├── x51y50.txt │ │ ├── x51y51.txt │ │ ├── x51y52.txt │ │ ├── x51y53.txt │ │ ├── x51y54.txt │ │ ├── x51y55.txt │ │ ├── x51y58.txt │ │ ├── x52y50.txt │ │ ├── x52y51.txt │ │ ├── x52y52.txt │ │ ├── x52y53.txt │ │ ├── x52y54.txt │ │ ├── x52y55.txt │ │ ├── x52y56.txt │ │ ├── x52y57.txt │ │ ├── x52y58.txt │ │ ├── x53y50.txt │ │ ├── x53y51.txt │ │ ├── x53y54.txt │ │ ├── x53y55.txt │ │ ├── x54y50.txt │ │ ├── x54y51.txt │ │ ├── x54y54.txt │ │ ├── x54y55.txt │ │ ├── x55y49.txt │ │ ├── x55y50.txt │ │ ├── x55y51.txt │ │ ├── x55y52.txt │ │ ├── x55y53.txt │ │ └── x55y54.txt │ ├── other │ │ ├── Copy of x102y110.txt │ │ ├── x100y100.txt │ │ ├── x100y101.txt │ │ ├── x100y102.txt │ │ ├── x100y103.txt │ │ ├── x100y104.txt │ │ ├── x100y105.txt │ │ ├── x100y106.txt │ │ ├── x100y107.txt │ │ ├── x100y108.txt │ │ ├── x100y109.txt │ │ ├── x100y110.txt │ │ ├── x100y111.txt │ │ ├── x100y112.txt │ │ ├── x100y113.txt │ │ ├── x100y114.txt │ │ ├── x100y115.txt │ │ ├── x100y116.txt │ │ ├── x100y117.txt │ │ ├── x101y102.txt │ │ ├── x101y103.txt │ │ ├── x101y104.txt │ │ ├── x101y105.txt │ │ ├── x101y106.txt │ │ ├── x101y108.txt │ │ ├── x101y109.txt │ │ ├── x101y110.txt │ │ ├── x101y111.txt │ │ ├── x101y112.txt │ │ ├── x101y113.txt │ │ ├── x101y114.txt │ │ ├── x101y115.txt │ │ ├── x101y116.txt │ │ ├── x102y102.txt │ │ ├── x102y103.txt │ │ ├── x102y105.txt │ │ ├── x102y106.txt │ │ ├── x102y108.txt │ │ ├── x102y109.txt │ │ ├── x102y110.txt │ │ ├── x102y111.txt │ │ ├── x102y112.txt │ │ ├── x102y113.txt │ │ ├── x102y114.txt │ │ ├── x102y115.txt │ │ ├── x103y102.txt │ │ ├── x103y103.txt │ │ ├── x103y105.txt │ │ ├── x103y106.txt │ │ ├── x103y107.txt │ │ ├── x103y108.txt │ │ ├── x103y109.txt │ │ ├── x103y110.txt │ │ ├── x103y111.txt │ │ ├── x103y112.txt │ │ ├── x103y113.txt │ │ ├── x103y114.txt │ │ ├── x103y115.txt │ │ ├── x104y105.txt │ │ ├── x104y107.txt │ │ ├── x104y109.txt │ │ ├── x104y110.txt │ │ ├── x104y111.txt │ │ ├── x104y112.txt │ │ ├── x104y113.txt │ │ ├── x104y114.txt │ │ ├── x104y115.txt │ │ ├── x105y102.txt │ │ ├── x105y103.txt │ │ ├── x105y104.txt │ │ ├── x105y105.txt │ │ ├── x105y106.txt │ │ ├── x105y107.txt │ │ ├── x105y108.txt │ │ ├── x105y109.txt │ │ ├── x105y110.txt │ │ ├── x105y111.txt │ │ ├── x105y112.txt │ │ ├── x105y113.txt │ │ ├── x105y114.txt │ │ ├── x105y115.txt │ │ ├── x105y118.txt │ │ ├── x105y119.txt │ │ ├── x106y102.txt │ │ ├── x106y104.txt │ │ ├── x106y105.txt │ │ ├── x106y106.txt │ │ ├── x106y107.txt │ │ ├── x106y108.txt │ │ ├── x106y109.txt │ │ ├── x106y110.txt │ │ ├── x106y111.txt │ │ ├── x106y112.txt │ │ ├── x106y113.txt │ │ ├── x106y114.txt │ │ ├── x106y115.txt │ │ ├── x106y118.txt │ │ ├── x106y119.txt │ │ ├── x107y101.txt │ │ ├── x107y102.txt │ │ ├── x107y103.txt │ │ ├── x107y104.txt │ │ ├── x107y105.txt │ │ ├── x107y106.txt │ │ ├── x107y107.txt │ │ ├── x107y108.txt │ │ ├── x107y109.txt │ │ ├── x107y110.txt │ │ ├── x107y111.txt │ │ ├── x107y114.txt │ │ ├── x108y100.txt │ │ ├── x108y101.txt │ │ ├── x108y102.txt │ │ ├── x108y103.txt │ │ ├── x108y104.txt │ │ ├── x108y105.txt │ │ ├── x108y106.txt │ │ ├── x108y107.txt │ │ ├── x108y108.txt │ │ ├── x108y110.txt │ │ ├── x108y111.txt │ │ ├── x108y112.txt │ │ ├── x108y113.txt │ │ ├── x108y114.txt │ │ ├── x108y115.txt │ │ ├── x108y116.txt │ │ ├── x108y117.txt │ │ ├── x108y118.txt │ │ ├── x108y119.txt │ │ ├── x110y100.txt │ │ ├── x110y101.txt │ │ ├── x110y102.txt │ │ ├── x110y103.txt │ │ ├── x110y108.txt │ │ ├── x110y109.txt │ │ ├── x110y110.txt │ │ ├── x110y111.txt │ │ ├── x110y112.txt │ │ ├── x110y113.txt │ │ ├── x110y114.txt │ │ ├── x110y115.txt │ │ ├── x110y116.txt │ │ ├── x110y117.txt │ │ ├── x110y118.txt │ │ ├── x110y119.txt │ │ ├── x111y100.txt │ │ ├── x111y101.txt │ │ ├── x111y102.txt │ │ ├── x111y103.txt │ │ ├── x111y108.txt │ │ ├── x111y109.txt │ │ ├── x111y110.txt │ │ ├── x111y116.txt │ │ ├── x111y117.txt │ │ ├── x111y118.txt │ │ ├── x111y119.txt │ │ ├── x112y100.txt │ │ ├── x112y101.txt │ │ ├── x112y102.txt │ │ ├── x112y108.txt │ │ ├── x112y109.txt │ │ ├── x112y110.txt │ │ ├── x112y116.txt │ │ ├── x112y117.txt │ │ ├── x112y118.txt │ │ ├── x112y119.txt │ │ ├── x113y101.txt │ │ ├── x113y102.txt │ │ ├── x113y114.txt │ │ ├── x113y115.txt │ │ ├── x113y116.txt │ │ ├── x113y117.txt │ │ ├── x113y118.txt │ │ ├── x113y119.txt │ │ ├── x114y114.txt │ │ ├── x114y116.txt │ │ ├── x114y117.txt │ │ ├── x114y118.txt │ │ ├── x114y119.txt │ │ ├── x115y114.txt │ │ ├── x115y116.txt │ │ ├── x115y117.txt │ │ ├── x115y118.txt │ │ ├── x115y119.txt │ │ ├── x116y104.txt │ │ ├── x116y105.txt │ │ ├── x116y114.txt │ │ ├── x116y117.txt │ │ ├── x116y119.txt │ │ ├── x117y104.txt │ │ ├── x117y105.txt │ │ ├── x117y106.txt │ │ ├── x117y112.txt │ │ ├── x117y113.txt │ │ ├── x117y114.txt │ │ ├── x117y115.txt │ │ ├── x117y116.txt │ │ ├── x117y117.txt │ │ ├── x117y118.txt │ │ ├── x117y119.txt │ │ ├── x118y104.txt │ │ ├── x118y105.txt │ │ ├── x118y106.txt │ │ ├── x118y115.txt │ │ ├── x118y117.txt │ │ ├── x118y119.txt │ │ ├── x119y104.txt │ │ ├── x119y105.txt │ │ ├── x119y106.txt │ │ ├── x119y107.txt │ │ ├── x119y109.txt │ │ ├── x119y110.txt │ │ ├── x119y111.txt │ │ ├── x119y112.txt │ │ ├── x119y113.txt │ │ ├── x119y114.txt │ │ ├── x119y115.txt │ │ ├── x119y116.txt │ │ ├── x119y117.txt │ │ ├── x119y118.txt │ │ └── x119y119.txt │ ├── spacestation2 │ │ ├── x48y41.txt │ │ ├── x48y42.txt │ │ ├── x48y43.txt │ │ ├── x49y41.txt │ │ ├── x49y42.txt │ │ ├── x49y43.txt │ │ ├── x49y47.txt │ │ ├── x49y48.txt │ │ ├── x49y49.txt │ │ ├── x49y50.txt │ │ ├── x50y39.txt │ │ ├── x50y40.txt │ │ ├── x50y41.txt │ │ ├── x50y42.txt │ │ ├── x50y43.txt │ │ ├── x50y47.txt │ │ ├── x50y48.txt │ │ ├── x50y49.txt │ │ ├── x50y50.txt │ │ ├── x51y39.txt │ │ ├── x51y40.txt │ │ ├── x51y41.txt │ │ ├── x51y42.txt │ │ ├── x51y43.txt │ │ ├── x51y44.txt │ │ ├── x51y45.txt │ │ ├── x51y46.txt │ │ ├── x51y47.txt │ │ ├── x51y48.txt │ │ ├── x51y49.txt │ │ ├── x52y39.txt │ │ ├── x52y40.txt │ │ ├── x52y41.txt │ │ ├── x52y42.txt │ │ ├── x52y43.txt │ │ ├── x52y44.txt │ │ ├── x52y45.txt │ │ ├── x52y46.txt │ │ ├── x52y47.txt │ │ ├── x52y48.txt │ │ ├── x52y49.txt │ │ ├── x53y39.txt │ │ ├── x53y40.txt │ │ ├── x53y41.txt │ │ ├── x53y42.txt │ │ ├── x53y43.txt │ │ ├── x53y44.txt │ │ ├── x53y45.txt │ │ ├── x53y46.txt │ │ ├── x53y47.txt │ │ ├── x53y48.txt │ │ ├── x53y49.txt │ │ ├── x54y42.txt │ │ ├── x54y43.txt │ │ ├── x54y44.txt │ │ ├── x54y45.txt │ │ ├── x54y46.txt │ │ ├── x54y47.txt │ │ ├── x54y48.txt │ │ ├── x54y49.txt │ │ ├── x55y43.txt │ │ ├── x55y44.txt │ │ ├── x55y45.txt │ │ ├── x55y46.txt │ │ ├── x55y47.txt │ │ ├── x56y43.txt │ │ ├── x56y44.txt │ │ ├── x56y45.txt │ │ ├── x56y46.txt │ │ ├── x56y47.txt │ │ ├── x56y48.txt │ │ ├── x56y49.txt │ │ └── x56y50.txt │ └── warp │ │ ├── old │ │ ├── x50y50.txt │ │ └── x54y50.txt │ │ ├── x49y49.txt │ │ ├── x50y49.txt │ │ ├── x50y50.txt │ │ ├── x51y49.txt │ │ ├── x51y50.txt │ │ ├── x51y51.txt │ │ ├── x51y52.txt │ │ ├── x52y49.txt │ │ ├── x52y50.txt │ │ ├── x52y51.txt │ │ ├── x52y52.txt │ │ ├── x53y49.txt │ │ ├── x53y50.txt │ │ ├── x53y51.txt │ │ ├── x53y52.txt │ │ ├── x54y49.txt │ │ ├── x54y50.txt │ │ ├── x54y51.txt │ │ ├── x54y52.txt │ │ ├── x55y49.txt │ │ ├── x55y50.txt │ │ ├── x55y51.txt │ │ └── x55y52.txt │ ├── input.hpp │ ├── logic.hpp │ ├── main.cpp │ ├── map.hpp │ ├── maps │ ├── lab │ │ ├── x48y52.txt │ │ ├── x48y53.txt │ │ ├── x49y51.txt │ │ ├── x49y52.txt │ │ ├── x49y53.txt │ │ ├── x49y54.txt │ │ ├── x49y55.txt │ │ ├── x50y50.txt │ │ ├── x50y51.txt │ │ ├── x50y52.txt │ │ ├── x50y53.txt │ │ ├── x50y54.txt │ │ ├── x50y55.txt │ │ ├── x50y58.txt │ │ ├── x51y50.txt │ │ ├── x51y51.txt │ │ ├── x51y52.txt │ │ ├── x51y53.txt │ │ ├── x51y54.txt │ │ ├── x51y55.txt │ │ ├── x51y58.txt │ │ ├── x52y50.txt │ │ ├── x52y51.txt │ │ ├── x52y52.txt │ │ ├── x52y53.txt │ │ ├── x52y54.txt │ │ ├── x52y55.txt │ │ ├── x52y56.txt │ │ ├── x52y57.txt │ │ ├── x52y58.txt │ │ ├── x53y50.txt │ │ ├── x53y51.txt │ │ ├── x53y54.txt │ │ ├── x53y55.txt │ │ ├── x54y50.txt │ │ ├── x54y51.txt │ │ ├── x54y54.txt │ │ ├── x54y55.txt │ │ ├── x55y49.txt │ │ ├── x55y50.txt │ │ ├── x55y51.txt │ │ ├── x55y52.txt │ │ ├── x55y53.txt │ │ └── x55y54.txt │ ├── other │ │ ├── Copy of x102y110.txt │ │ ├── x100y100.txt │ │ ├── x100y101.txt │ │ ├── x100y102.txt │ │ ├── x100y103.txt │ │ ├── x100y104.txt │ │ ├── x100y105.txt │ │ ├── x100y106.txt │ │ ├── x100y107.txt │ │ ├── x100y108.txt │ │ ├── x100y109.txt │ │ ├── x100y110.txt │ │ ├── x100y111.txt │ │ ├── x100y112.txt │ │ ├── x100y113.txt │ │ ├── x100y114.txt │ │ ├── x100y115.txt │ │ ├── x100y116.txt │ │ ├── x100y117.txt │ │ ├── x101y102.txt │ │ ├── x101y103.txt │ │ ├── x101y104.txt │ │ ├── x101y105.txt │ │ ├── x101y106.txt │ │ ├── x101y108.txt │ │ ├── x101y109.txt │ │ ├── x101y110.txt │ │ ├── x101y111.txt │ │ ├── x101y112.txt │ │ ├── x101y113.txt │ │ ├── x101y114.txt │ │ ├── x101y115.txt │ │ ├── x101y116.txt │ │ ├── x102y102.txt │ │ ├── x102y103.txt │ │ ├── x102y105.txt │ │ ├── x102y106.txt │ │ ├── x102y108.txt │ │ ├── x102y109.txt │ │ ├── x102y110.txt │ │ ├── x102y111.txt │ │ ├── x102y112.txt │ │ ├── x102y113.txt │ │ ├── x102y114.txt │ │ ├── x102y115.txt │ │ ├── x103y102.txt │ │ ├── x103y103.txt │ │ ├── x103y105.txt │ │ ├── x103y106.txt │ │ ├── x103y107.txt │ │ ├── x103y108.txt │ │ ├── x103y109.txt │ │ ├── x103y110.txt │ │ ├── x103y111.txt │ │ ├── x103y112.txt │ │ ├── x103y113.txt │ │ ├── x103y114.txt │ │ ├── x103y115.txt │ │ ├── x104y105.txt │ │ ├── x104y107.txt │ │ ├── x104y109.txt │ │ ├── x104y110.txt │ │ ├── x104y111.txt │ │ ├── x104y112.txt │ │ ├── x104y113.txt │ │ ├── x104y114.txt │ │ ├── x104y115.txt │ │ ├── x105y102.txt │ │ ├── x105y103.txt │ │ ├── x105y104.txt │ │ ├── x105y105.txt │ │ ├── x105y106.txt │ │ ├── x105y107.txt │ │ ├── x105y108.txt │ │ ├── x105y109.txt │ │ ├── x105y110.txt │ │ ├── x105y111.txt │ │ ├── x105y112.txt │ │ ├── x105y113.txt │ │ ├── x105y114.txt │ │ ├── x105y115.txt │ │ ├── x105y118.txt │ │ ├── x105y119.txt │ │ ├── x106y102.txt │ │ ├── x106y104.txt │ │ ├── x106y105.txt │ │ ├── x106y106.txt │ │ ├── x106y107.txt │ │ ├── x106y108.txt │ │ ├── x106y109.txt │ │ ├── x106y110.txt │ │ ├── x106y111.txt │ │ ├── x106y112.txt │ │ ├── x106y113.txt │ │ ├── x106y114.txt │ │ ├── x106y115.txt │ │ ├── x106y118.txt │ │ ├── x106y119.txt │ │ ├── x107y101.txt │ │ ├── x107y102.txt │ │ ├── x107y103.txt │ │ ├── x107y104.txt │ │ ├── x107y105.txt │ │ ├── x107y106.txt │ │ ├── x107y107.txt │ │ ├── x107y108.txt │ │ ├── x107y109.txt │ │ ├── x107y110.txt │ │ ├── x107y111.txt │ │ ├── x107y114.txt │ │ ├── x108y100.txt │ │ ├── x108y101.txt │ │ ├── x108y102.txt │ │ ├── x108y103.txt │ │ ├── x108y104.txt │ │ ├── x108y105.txt │ │ ├── x108y106.txt │ │ ├── x108y107.txt │ │ ├── x108y108.txt │ │ ├── x108y110.txt │ │ ├── x108y111.txt │ │ ├── x108y112.txt │ │ ├── x108y113.txt │ │ ├── x108y114.txt │ │ ├── x108y115.txt │ │ ├── x108y116.txt │ │ ├── x108y117.txt │ │ ├── x108y118.txt │ │ ├── x108y119.txt │ │ ├── x110y100.txt │ │ ├── x110y103.txt │ │ ├── x110y108.txt │ │ ├── x110y109.txt │ │ ├── x110y110.txt │ │ ├── x110y111.txt │ │ ├── x110y112.txt │ │ ├── x110y113.txt │ │ ├── x110y114.txt │ │ ├── x110y115.txt │ │ ├── x110y116.txt │ │ ├── x110y117.txt │ │ ├── x110y118.txt │ │ ├── x110y119.txt │ │ ├── x111y101.txt │ │ ├── x111y102.txt │ │ ├── x111y103.txt │ │ ├── x111y108.txt │ │ ├── x111y109.txt │ │ ├── x111y110.txt │ │ ├── x111y116.txt │ │ ├── x111y117.txt │ │ ├── x112y100.txt │ │ ├── x112y101.txt │ │ ├── x112y102.txt │ │ ├── x112y108.txt │ │ ├── x112y109.txt │ │ ├── x112y110.txt │ │ ├── x112y116.txt │ │ ├── x112y117.txt │ │ ├── x112y119.txt │ │ ├── x113y101.txt │ │ ├── x113y102.txt │ │ ├── x113y114.txt │ │ ├── x113y115.txt │ │ ├── x113y116.txt │ │ ├── x113y117.txt │ │ ├── x113y118.txt │ │ ├── x113y119.txt │ │ ├── x114y114.txt │ │ ├── x114y116.txt │ │ ├── x114y117.txt │ │ ├── x114y118.txt │ │ ├── x114y119.txt │ │ ├── x115y114.txt │ │ ├── x115y116.txt │ │ ├── x115y117.txt │ │ ├── x115y118.txt │ │ ├── x115y119.txt │ │ ├── x116y104.txt │ │ ├── x116y105.txt │ │ ├── x116y114.txt │ │ ├── x116y117.txt │ │ ├── x116y119.txt │ │ ├── x117y104.txt │ │ ├── x117y105.txt │ │ ├── x117y106.txt │ │ ├── x117y112.txt │ │ ├── x117y113.txt │ │ ├── x117y114.txt │ │ ├── x117y115.txt │ │ ├── x117y116.txt │ │ ├── x117y117.txt │ │ ├── x117y118.txt │ │ ├── x117y119.txt │ │ ├── x118y104.txt │ │ ├── x118y105.txt │ │ ├── x118y106.txt │ │ ├── x118y115.txt │ │ ├── x118y117.txt │ │ ├── x118y119.txt │ │ ├── x119y104.txt │ │ ├── x119y105.txt │ │ ├── x119y106.txt │ │ ├── x119y107.txt │ │ ├── x119y109.txt │ │ ├── x119y110.txt │ │ ├── x119y111.txt │ │ ├── x119y112.txt │ │ ├── x119y113.txt │ │ ├── x119y114.txt │ │ ├── x119y115.txt │ │ ├── x119y116.txt │ │ ├── x119y117.txt │ │ ├── x119y118.txt │ │ └── x119y119.txt │ ├── spacestation2 │ │ ├── x48y41.txt │ │ ├── x48y42.txt │ │ ├── x48y43.txt │ │ ├── x49y41.txt │ │ ├── x49y42.txt │ │ ├── x49y43.txt │ │ ├── x49y47.txt │ │ ├── x49y48.txt │ │ ├── x49y49.txt │ │ ├── x49y50.txt │ │ ├── x50y39.txt │ │ ├── x50y40.txt │ │ ├── x50y41.txt │ │ ├── x50y42.txt │ │ ├── x50y43.txt │ │ ├── x50y47.txt │ │ ├── x50y48.txt │ │ ├── x50y49.txt │ │ ├── x50y50.txt │ │ ├── x51y39.txt │ │ ├── x51y40.txt │ │ ├── x51y41.txt │ │ ├── x51y42.txt │ │ ├── x51y43.txt │ │ ├── x51y44.txt │ │ ├── x51y45.txt │ │ ├── x51y46.txt │ │ ├── x51y47.txt │ │ ├── x51y48.txt │ │ ├── x51y49.txt │ │ ├── x52y39.txt │ │ ├── x52y40.txt │ │ ├── x52y41.txt │ │ ├── x52y42.txt │ │ ├── x52y43.txt │ │ ├── x52y44.txt │ │ ├── x52y45.txt │ │ ├── x52y46.txt │ │ ├── x52y47.txt │ │ ├── x52y48.txt │ │ ├── x52y49.txt │ │ ├── x53y39.txt │ │ ├── x53y40.txt │ │ ├── x53y41.txt │ │ ├── x53y42.txt │ │ ├── x53y43.txt │ │ ├── x53y44.txt │ │ ├── x53y45.txt │ │ ├── x53y46.txt │ │ ├── x53y47.txt │ │ ├── x53y48.txt │ │ ├── x53y49.txt │ │ ├── x54y42.txt │ │ ├── x54y43.txt │ │ ├── x54y44.txt │ │ ├── x54y45.txt │ │ ├── x54y46.txt │ │ ├── x54y47.txt │ │ ├── x54y48.txt │ │ ├── x54y49.txt │ │ ├── x55y43.txt │ │ ├── x55y44.txt │ │ ├── x55y45.txt │ │ ├── x55y46.txt │ │ ├── x55y47.txt │ │ ├── x56y43.txt │ │ ├── x56y44.txt │ │ ├── x56y45.txt │ │ ├── x56y46.txt │ │ ├── x56y47.txt │ │ ├── x56y48.txt │ │ ├── x56y49.txt │ │ └── x56y50.txt │ └── warp │ │ ├── old │ │ ├── x50y50.txt │ │ └── x54y50.txt │ │ ├── x49y49.txt │ │ ├── x50y49.txt │ │ ├── x50y50.txt │ │ ├── x51y49.txt │ │ ├── x51y50.txt │ │ ├── x51y51.txt │ │ ├── x51y52.txt │ │ ├── x52y49.txt │ │ ├── x52y50.txt │ │ ├── x52y51.txt │ │ ├── x52y52.txt │ │ ├── x53y49.txt │ │ ├── x53y50.txt │ │ ├── x53y51.txt │ │ ├── x53y52.txt │ │ ├── x54y49.txt │ │ ├── x54y50.txt │ │ ├── x54y51.txt │ │ ├── x54y52.txt │ │ ├── x55y49.txt │ │ ├── x55y50.txt │ │ ├── x55y51.txt │ │ └── x55y52.txt │ ├── minimap.png │ ├── misc.hpp │ ├── overworld.txt │ └── render.hpp └── readme.MD /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/libs/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/libs/SDL2.dll -------------------------------------------------------------------------------- /.github/libs/libgcc_s_sjlj-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/libs/libgcc_s_sjlj-1.dll -------------------------------------------------------------------------------- /.github/libs/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/libs/libogg-0.dll -------------------------------------------------------------------------------- /.github/libs/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/libs/libstdc++-6.dll -------------------------------------------------------------------------------- /.github/libs/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/libs/libvorbis-0.dll -------------------------------------------------------------------------------- /.github/libs/libvorbisenc-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/libs/libvorbisenc-2.dll -------------------------------------------------------------------------------- /.github/libs/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/libs/libvorbisfile-3.dll -------------------------------------------------------------------------------- /.github/libs/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/libs/zlib1.dll -------------------------------------------------------------------------------- /.github/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/resources/Info.plist -------------------------------------------------------------------------------- /.github/resources/vce.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/resources/vce.icns -------------------------------------------------------------------------------- /.github/workflows/ci-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/workflows/ci-android.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/.gitignore -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/FEATURES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/LICENSE.md -------------------------------------------------------------------------------- /License exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/License exceptions.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/README.md -------------------------------------------------------------------------------- /desktop_version/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | IndentWidth: 4 3 | -------------------------------------------------------------------------------- /desktop_version/.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !Dockerfile 3 | -------------------------------------------------------------------------------- /desktop_version/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/.gitignore -------------------------------------------------------------------------------- /desktop_version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/CMakeLists.txt -------------------------------------------------------------------------------- /desktop_version/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /desktop_version/Dockerfile.switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/Dockerfile.switch -------------------------------------------------------------------------------- /desktop_version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/README.md -------------------------------------------------------------------------------- /desktop_version/android-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-build.sh -------------------------------------------------------------------------------- /desktop_version/android-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/.gitignore -------------------------------------------------------------------------------- /desktop_version/android-project/android-project.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/android-project.iml -------------------------------------------------------------------------------- /desktop_version/android-project/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/app/app.iml -------------------------------------------------------------------------------- /desktop_version/android-project/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/app/build.gradle -------------------------------------------------------------------------------- /desktop_version/android-project/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /desktop_version/android-project/app/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/app/jni/Application.mk -------------------------------------------------------------------------------- /desktop_version/android-project/app/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/app/jni/CMakeLists.txt -------------------------------------------------------------------------------- /desktop_version/android-project/app/jni/root: -------------------------------------------------------------------------------- 1 | ../../../../ -------------------------------------------------------------------------------- /desktop_version/android-project/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/app/proguard-rules.pro -------------------------------------------------------------------------------- /desktop_version/android-project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/build.gradle -------------------------------------------------------------------------------- /desktop_version/android-project/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/gradle.properties -------------------------------------------------------------------------------- /desktop_version/android-project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/gradlew -------------------------------------------------------------------------------- /desktop_version/android-project/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/android-project/gradlew.bat -------------------------------------------------------------------------------- /desktop_version/android-project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /desktop_version/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/build.sh -------------------------------------------------------------------------------- /desktop_version/cmake/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/cmake/toolchain.cmake -------------------------------------------------------------------------------- /desktop_version/cmake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/cmake/version.cmake -------------------------------------------------------------------------------- /desktop_version/cpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/cpack.sh -------------------------------------------------------------------------------- /desktop_version/data/VVVVVV-CE.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/data/VVVVVV-CE.desktop -------------------------------------------------------------------------------- /desktop_version/data/VVVVVV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/data/VVVVVV.png -------------------------------------------------------------------------------- /desktop_version/data/graphics/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/data/graphics/font.png -------------------------------------------------------------------------------- /desktop_version/data/graphics/font.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/data/graphics/font.txt -------------------------------------------------------------------------------- /desktop_version/data/graphics/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/data/graphics/sprites.png -------------------------------------------------------------------------------- /desktop_version/data/leo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/data/leo.ogg -------------------------------------------------------------------------------- /desktop_version/data/pop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/data/pop.wav -------------------------------------------------------------------------------- /desktop_version/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/debug.sh -------------------------------------------------------------------------------- /desktop_version/download-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/download-data.sh -------------------------------------------------------------------------------- /desktop_version/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/icon.jpg -------------------------------------------------------------------------------- /desktop_version/pinned-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/pinned-cmake.sh -------------------------------------------------------------------------------- /desktop_version/resources.rc: -------------------------------------------------------------------------------- 1 | AppIcon ICON "./v6cord.ico" 2 | -------------------------------------------------------------------------------- /desktop_version/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/run.sh -------------------------------------------------------------------------------- /desktop_version/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/shell.nix -------------------------------------------------------------------------------- /desktop_version/src/BinaryBlob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/BinaryBlob.cpp -------------------------------------------------------------------------------- /desktop_version/src/BinaryBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/BinaryBlob.h -------------------------------------------------------------------------------- /desktop_version/src/BlockV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/BlockV.cpp -------------------------------------------------------------------------------- /desktop_version/src/BlockV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/BlockV.h -------------------------------------------------------------------------------- /desktop_version/src/Credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Credits.h -------------------------------------------------------------------------------- /desktop_version/src/Ent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Ent.cpp -------------------------------------------------------------------------------- /desktop_version/src/Ent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Ent.h -------------------------------------------------------------------------------- /desktop_version/src/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Entity.cpp -------------------------------------------------------------------------------- /desktop_version/src/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Entity.h -------------------------------------------------------------------------------- /desktop_version/src/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Enums.h -------------------------------------------------------------------------------- /desktop_version/src/FileSystemUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/FileSystemUtils.cpp -------------------------------------------------------------------------------- /desktop_version/src/FileSystemUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/FileSystemUtils.h -------------------------------------------------------------------------------- /desktop_version/src/Finalclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Finalclass.cpp -------------------------------------------------------------------------------- /desktop_version/src/Finalclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Finalclass.h -------------------------------------------------------------------------------- /desktop_version/src/GOGNetwork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/GOGNetwork.c -------------------------------------------------------------------------------- /desktop_version/src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Game.cpp -------------------------------------------------------------------------------- /desktop_version/src/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Game.h -------------------------------------------------------------------------------- /desktop_version/src/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Graphics.cpp -------------------------------------------------------------------------------- /desktop_version/src/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Graphics.h -------------------------------------------------------------------------------- /desktop_version/src/GraphicsResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/GraphicsResources.cpp -------------------------------------------------------------------------------- /desktop_version/src/GraphicsResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/GraphicsResources.h -------------------------------------------------------------------------------- /desktop_version/src/GraphicsUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/GraphicsUtil.cpp -------------------------------------------------------------------------------- /desktop_version/src/GraphicsUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/GraphicsUtil.h -------------------------------------------------------------------------------- /desktop_version/src/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Input.cpp -------------------------------------------------------------------------------- /desktop_version/src/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Input.h -------------------------------------------------------------------------------- /desktop_version/src/KeyPoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/KeyPoll.cpp -------------------------------------------------------------------------------- /desktop_version/src/KeyPoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/KeyPoll.h -------------------------------------------------------------------------------- /desktop_version/src/Labclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Labclass.cpp -------------------------------------------------------------------------------- /desktop_version/src/Labclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Labclass.h -------------------------------------------------------------------------------- /desktop_version/src/Logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Logic.cpp -------------------------------------------------------------------------------- /desktop_version/src/Logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Logic.h -------------------------------------------------------------------------------- /desktop_version/src/LuaScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/LuaScript.cpp -------------------------------------------------------------------------------- /desktop_version/src/LuaScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/LuaScript.h -------------------------------------------------------------------------------- /desktop_version/src/MakeAndPlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/MakeAndPlay.h -------------------------------------------------------------------------------- /desktop_version/src/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Map.cpp -------------------------------------------------------------------------------- /desktop_version/src/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Map.h -------------------------------------------------------------------------------- /desktop_version/src/Maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Maths.h -------------------------------------------------------------------------------- /desktop_version/src/Music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Music.cpp -------------------------------------------------------------------------------- /desktop_version/src/Music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Music.h -------------------------------------------------------------------------------- /desktop_version/src/Network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Network.c -------------------------------------------------------------------------------- /desktop_version/src/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Network.h -------------------------------------------------------------------------------- /desktop_version/src/Otherlevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Otherlevel.cpp -------------------------------------------------------------------------------- /desktop_version/src/Otherlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Otherlevel.h -------------------------------------------------------------------------------- /desktop_version/src/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Render.cpp -------------------------------------------------------------------------------- /desktop_version/src/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Render.h -------------------------------------------------------------------------------- /desktop_version/src/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Screen.cpp -------------------------------------------------------------------------------- /desktop_version/src/Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Screen.h -------------------------------------------------------------------------------- /desktop_version/src/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Script.cpp -------------------------------------------------------------------------------- /desktop_version/src/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Script.h -------------------------------------------------------------------------------- /desktop_version/src/Scripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Scripts.cpp -------------------------------------------------------------------------------- /desktop_version/src/SoundSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/SoundSystem.cpp -------------------------------------------------------------------------------- /desktop_version/src/SoundSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/SoundSystem.h -------------------------------------------------------------------------------- /desktop_version/src/Spacestation2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Spacestation2.cpp -------------------------------------------------------------------------------- /desktop_version/src/Spacestation2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Spacestation2.h -------------------------------------------------------------------------------- /desktop_version/src/SteamNetwork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/SteamNetwork.c -------------------------------------------------------------------------------- /desktop_version/src/TerminalScripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/TerminalScripts.cpp -------------------------------------------------------------------------------- /desktop_version/src/Textbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Textbox.cpp -------------------------------------------------------------------------------- /desktop_version/src/Textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Textbox.h -------------------------------------------------------------------------------- /desktop_version/src/Tower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Tower.cpp -------------------------------------------------------------------------------- /desktop_version/src/Tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Tower.h -------------------------------------------------------------------------------- /desktop_version/src/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Utilities.cpp -------------------------------------------------------------------------------- /desktop_version/src/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/Utilities.h -------------------------------------------------------------------------------- /desktop_version/src/UtilityClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/UtilityClass.cpp -------------------------------------------------------------------------------- /desktop_version/src/UtilityClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/UtilityClass.h -------------------------------------------------------------------------------- /desktop_version/src/WarpClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/WarpClass.cpp -------------------------------------------------------------------------------- /desktop_version/src/WarpClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/WarpClass.h -------------------------------------------------------------------------------- /desktop_version/src/battery_apple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/battery_apple.m -------------------------------------------------------------------------------- /desktop_version/src/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/editor.cpp -------------------------------------------------------------------------------- /desktop_version/src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/editor.h -------------------------------------------------------------------------------- /desktop_version/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/main.cpp -------------------------------------------------------------------------------- /desktop_version/src/preloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/preloader.cpp -------------------------------------------------------------------------------- /desktop_version/src/preloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/preloader.h -------------------------------------------------------------------------------- /desktop_version/src/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/src/trace.c -------------------------------------------------------------------------------- /desktop_version/v6cord.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/v6cord.ico -------------------------------------------------------------------------------- /desktop_version/windres.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/windres.patch -------------------------------------------------------------------------------- /desktop_version/wine-gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/desktop_version/wine-gdb.sh -------------------------------------------------------------------------------- /mobile_version/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/application.xml -------------------------------------------------------------------------------- /mobile_version/levels/finalclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/levels/finalclass.as -------------------------------------------------------------------------------- /mobile_version/levels/labclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/levels/labclass.as -------------------------------------------------------------------------------- /mobile_version/levels/newgameclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/levels/newgameclass.as -------------------------------------------------------------------------------- /mobile_version/levels/otherlevelclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/levels/otherlevelclass.as -------------------------------------------------------------------------------- /mobile_version/levels/spacestation2class.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/levels/spacestation2class.as -------------------------------------------------------------------------------- /mobile_version/levels/towerclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/levels/towerclass.as -------------------------------------------------------------------------------- /mobile_version/levels/warpclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/levels/warpclass.as -------------------------------------------------------------------------------- /mobile_version/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/readme.MD -------------------------------------------------------------------------------- /mobile_version/src/EditorDataclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/EditorDataclass.as -------------------------------------------------------------------------------- /mobile_version/src/LevelMetaData.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/LevelMetaData.as -------------------------------------------------------------------------------- /mobile_version/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/Main.as -------------------------------------------------------------------------------- /mobile_version/src/Preloader.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/Preloader.as -------------------------------------------------------------------------------- /mobile_version/src/bigroom/input/KeyPoll.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/bigroom/input/KeyPoll.as -------------------------------------------------------------------------------- /mobile_version/src/blockclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/blockclass.as -------------------------------------------------------------------------------- /mobile_version/src/device.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/device.as -------------------------------------------------------------------------------- /mobile_version/src/dwgraphicsclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/dwgraphicsclass.as -------------------------------------------------------------------------------- /mobile_version/src/edentitiesclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/edentitiesclass.as -------------------------------------------------------------------------------- /mobile_version/src/editor.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/editor.as -------------------------------------------------------------------------------- /mobile_version/src/edlevelclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/edlevelclass.as -------------------------------------------------------------------------------- /mobile_version/src/entclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/entclass.as -------------------------------------------------------------------------------- /mobile_version/src/entityclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/entityclass.as -------------------------------------------------------------------------------- /mobile_version/src/gameclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/gameclass.as -------------------------------------------------------------------------------- /mobile_version/src/helpclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/helpclass.as -------------------------------------------------------------------------------- /mobile_version/src/includes/input.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/includes/input.as -------------------------------------------------------------------------------- /mobile_version/src/includes/logic.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/includes/logic.as -------------------------------------------------------------------------------- /mobile_version/src/includes/render.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/includes/render.as -------------------------------------------------------------------------------- /mobile_version/src/includes/scripts.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/includes/scripts.as -------------------------------------------------------------------------------- /mobile_version/src/includes/terminalscripts.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/includes/terminalscripts.as -------------------------------------------------------------------------------- /mobile_version/src/mapclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/mapclass.as -------------------------------------------------------------------------------- /mobile_version/src/musicclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/musicclass.as -------------------------------------------------------------------------------- /mobile_version/src/platformclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/platformclass.as -------------------------------------------------------------------------------- /mobile_version/src/saveclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/saveclass.as -------------------------------------------------------------------------------- /mobile_version/src/scoreclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/scoreclass.as -------------------------------------------------------------------------------- /mobile_version/src/scriptclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/scriptclass.as -------------------------------------------------------------------------------- /mobile_version/src/textboxclass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/textboxclass.as -------------------------------------------------------------------------------- /mobile_version/src/tmap.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/mobile_version/src/tmap.as -------------------------------------------------------------------------------- /third_party/androidenv/build-app.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/build-app.nix -------------------------------------------------------------------------------- /third_party/androidenv/build-tools.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/build-tools.nix -------------------------------------------------------------------------------- /third_party/androidenv/cmake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/cmake.nix -------------------------------------------------------------------------------- /third_party/androidenv/compose-android-packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/compose-android-packages.nix -------------------------------------------------------------------------------- /third_party/androidenv/convertaddons.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/convertaddons.xsl -------------------------------------------------------------------------------- /third_party/androidenv/convertpackages.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/convertpackages.xsl -------------------------------------------------------------------------------- /third_party/androidenv/convertsystemimages.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/convertsystemimages.xsl -------------------------------------------------------------------------------- /third_party/androidenv/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/default.nix -------------------------------------------------------------------------------- /third_party/androidenv/deploy-androidpackage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/deploy-androidpackage.nix -------------------------------------------------------------------------------- /third_party/androidenv/emulate-app.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/emulate-app.nix -------------------------------------------------------------------------------- /third_party/androidenv/emulator.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/emulator.nix -------------------------------------------------------------------------------- /third_party/androidenv/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/generate.sh -------------------------------------------------------------------------------- /third_party/androidenv/generated/addons.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/generated/addons.nix -------------------------------------------------------------------------------- /third_party/androidenv/generated/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/generated/packages.nix -------------------------------------------------------------------------------- /third_party/androidenv/generated/system-images-android.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/generated/system-images-android.nix -------------------------------------------------------------------------------- /third_party/androidenv/lldb.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/lldb.nix -------------------------------------------------------------------------------- /third_party/androidenv/ndk-bundle/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/ndk-bundle/default.nix -------------------------------------------------------------------------------- /third_party/androidenv/platform-tools.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/platform-tools.nix -------------------------------------------------------------------------------- /third_party/androidenv/querypackages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/querypackages.sh -------------------------------------------------------------------------------- /third_party/androidenv/tools.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/tools.nix -------------------------------------------------------------------------------- /third_party/androidenv/tools/25.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/tools/25.nix -------------------------------------------------------------------------------- /third_party/androidenv/tools/26.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/tools/26.nix -------------------------------------------------------------------------------- /third_party/androidenv/xml/addon2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/xml/addon2-1.xml -------------------------------------------------------------------------------- /third_party/androidenv/xml/android-sys-img2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/xml/android-sys-img2-1.xml -------------------------------------------------------------------------------- /third_party/androidenv/xml/android-tv-sys-img2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/xml/android-tv-sys-img2-1.xml -------------------------------------------------------------------------------- /third_party/androidenv/xml/android-wear-cn-sys-img2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/xml/android-wear-cn-sys-img2-1.xml -------------------------------------------------------------------------------- /third_party/androidenv/xml/android-wear-sys-img2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/xml/android-wear-sys-img2-1.xml -------------------------------------------------------------------------------- /third_party/androidenv/xml/google_apis-sys-img2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/xml/google_apis-sys-img2-1.xml -------------------------------------------------------------------------------- /third_party/androidenv/xml/repository2-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/androidenv/xml/repository2-1.xml -------------------------------------------------------------------------------- /third_party/cparse/.gitignore: -------------------------------------------------------------------------------- 1 | test-shunting-yard 2 | *.o 3 | -------------------------------------------------------------------------------- /third_party/cparse/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/.gitrepo -------------------------------------------------------------------------------- /third_party/cparse/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/.travis.yml -------------------------------------------------------------------------------- /third_party/cparse/LICENSE.mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/LICENSE.mit -------------------------------------------------------------------------------- /third_party/cparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/Makefile -------------------------------------------------------------------------------- /third_party/cparse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/README.md -------------------------------------------------------------------------------- /third_party/cparse/builtin-features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/builtin-features.cpp -------------------------------------------------------------------------------- /third_party/cparse/builtin-features.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/builtin-features.inc -------------------------------------------------------------------------------- /third_party/cparse/builtin-features/functions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/builtin-features/functions.inc -------------------------------------------------------------------------------- /third_party/cparse/builtin-features/operations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/builtin-features/operations.inc -------------------------------------------------------------------------------- /third_party/cparse/builtin-features/reservedWords.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/builtin-features/reservedWords.inc -------------------------------------------------------------------------------- /third_party/cparse/catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/catch.cpp -------------------------------------------------------------------------------- /third_party/cparse/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/catch.hpp -------------------------------------------------------------------------------- /third_party/cparse/containers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/containers.cpp -------------------------------------------------------------------------------- /third_party/cparse/containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/containers.h -------------------------------------------------------------------------------- /third_party/cparse/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/functions.cpp -------------------------------------------------------------------------------- /third_party/cparse/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/functions.h -------------------------------------------------------------------------------- /third_party/cparse/logo-cparse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/logo-cparse.png -------------------------------------------------------------------------------- /third_party/cparse/packToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/packToken.cpp -------------------------------------------------------------------------------- /third_party/cparse/packToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/packToken.h -------------------------------------------------------------------------------- /third_party/cparse/shunting-yard-exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/shunting-yard-exceptions.h -------------------------------------------------------------------------------- /third_party/cparse/shunting-yard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/shunting-yard.cpp -------------------------------------------------------------------------------- /third_party/cparse/shunting-yard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/shunting-yard.h -------------------------------------------------------------------------------- /third_party/cparse/test-shunting-yard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/cparse/test-shunting-yard.cpp -------------------------------------------------------------------------------- /third_party/libpng-1.6.37.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/libpng-1.6.37.tar.xz -------------------------------------------------------------------------------- /third_party/lua-5.3.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/Makefile -------------------------------------------------------------------------------- /third_party/lua-5.3.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/README -------------------------------------------------------------------------------- /third_party/lua-5.3.5/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/doc/contents.html -------------------------------------------------------------------------------- /third_party/lua-5.3.5/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/doc/index.css -------------------------------------------------------------------------------- /third_party/lua-5.3.5/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/doc/logo.gif -------------------------------------------------------------------------------- /third_party/lua-5.3.5/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/doc/lua.1 -------------------------------------------------------------------------------- /third_party/lua-5.3.5/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/doc/lua.css -------------------------------------------------------------------------------- /third_party/lua-5.3.5/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/doc/luac.1 -------------------------------------------------------------------------------- /third_party/lua-5.3.5/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/doc/manual.css -------------------------------------------------------------------------------- /third_party/lua-5.3.5/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/doc/manual.html -------------------------------------------------------------------------------- /third_party/lua-5.3.5/doc/osi-certified-72x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/doc/osi-certified-72x60.png -------------------------------------------------------------------------------- /third_party/lua-5.3.5/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/doc/readme.html -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/Makefile -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lapi.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lapi.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lauxlib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lauxlib.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lbaselib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lbitlib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lcode.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lcode.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lcorolib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lctype.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lctype.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ldblib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ldebug.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ldebug.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ldo.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ldo.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ldump.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lfunc.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lfunc.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lgc.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lgc.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/linit.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/liolib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/llex.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/llex.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/llimits.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lmathlib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lmem.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lmem.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/loadlib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lobject.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lobject.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lopcodes.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lopcodes.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/loslib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lparser.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lparser.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lprefix.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lstate.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lstate.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lstring.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lstring.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lstrlib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ltable.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ltable.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ltablib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ltm.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/ltm.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lua.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lua.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lua.hpp -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/luac.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/luaconf.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lualib.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lundump.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lundump.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lutf8lib.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lvm.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lvm.h -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lzio.c -------------------------------------------------------------------------------- /third_party/lua-5.3.5/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/lua-5.3.5/src/lzio.h -------------------------------------------------------------------------------- /third_party/mingw-std-threads/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/.gitrepo -------------------------------------------------------------------------------- /third_party/mingw-std-threads/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/mingw-std-threads/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/LICENSE -------------------------------------------------------------------------------- /third_party/mingw-std-threads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/README.md -------------------------------------------------------------------------------- /third_party/mingw-std-threads/mingw.condition_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/mingw.condition_variable.h -------------------------------------------------------------------------------- /third_party/mingw-std-threads/mingw.future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/mingw.future.h -------------------------------------------------------------------------------- /third_party/mingw-std-threads/mingw.invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/mingw.invoke.h -------------------------------------------------------------------------------- /third_party/mingw-std-threads/mingw.mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/mingw.mutex.h -------------------------------------------------------------------------------- /third_party/mingw-std-threads/mingw.shared_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/mingw.shared_mutex.h -------------------------------------------------------------------------------- /third_party/mingw-std-threads/mingw.thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/mingw.thread.h -------------------------------------------------------------------------------- /third_party/mingw-std-threads/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/tests/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/mingw-std-threads/tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/mingw-std-threads/tests/tests.cpp -------------------------------------------------------------------------------- /third_party/physfs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/LICENSE.txt -------------------------------------------------------------------------------- /third_party/physfs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/README.txt -------------------------------------------------------------------------------- /third_party/physfs/physfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs.c -------------------------------------------------------------------------------- /third_party/physfs/physfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs.h -------------------------------------------------------------------------------- /third_party/physfs/physfs_archiver_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_archiver_dir.c -------------------------------------------------------------------------------- /third_party/physfs/physfs_archiver_unpacked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_archiver_unpacked.c -------------------------------------------------------------------------------- /third_party/physfs/physfs_archiver_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_archiver_zip.c -------------------------------------------------------------------------------- /third_party/physfs/physfs_byteorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_byteorder.c -------------------------------------------------------------------------------- /third_party/physfs/physfs_casefolding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_casefolding.h -------------------------------------------------------------------------------- /third_party/physfs/physfs_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_internal.h -------------------------------------------------------------------------------- /third_party/physfs/physfs_miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_miniz.h -------------------------------------------------------------------------------- /third_party/physfs/physfs_platform_apple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_platform_apple.m -------------------------------------------------------------------------------- /third_party/physfs/physfs_platform_haiku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_platform_haiku.cpp -------------------------------------------------------------------------------- /third_party/physfs/physfs_platform_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_platform_posix.c -------------------------------------------------------------------------------- /third_party/physfs/physfs_platform_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_platform_unix.c -------------------------------------------------------------------------------- /third_party/physfs/physfs_platform_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_platform_windows.c -------------------------------------------------------------------------------- /third_party/physfs/physfs_platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_platforms.h -------------------------------------------------------------------------------- /third_party/physfs/physfs_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/physfs/physfs_unicode.c -------------------------------------------------------------------------------- /third_party/sol2/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/sol2/sol.hpp -------------------------------------------------------------------------------- /third_party/tinyxml2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/tinyxml2/LICENSE.txt -------------------------------------------------------------------------------- /third_party/tinyxml2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/tinyxml2/readme.md -------------------------------------------------------------------------------- /third_party/tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /third_party/tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /third_party/utfcpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/utfcpp/LICENSE -------------------------------------------------------------------------------- /third_party/utfcpp/source/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/utfcpp/source/utf8/checked.h -------------------------------------------------------------------------------- /third_party/utfcpp/source/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/utfcpp/source/utf8/core.h -------------------------------------------------------------------------------- /third_party/utfcpp/source/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/third_party/utfcpp/source/utf8/unchecked.h -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x41y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x41y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x41y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x41y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x41y56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x41y56.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x42y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x42y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x42y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x42y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x42y56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x42y56.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x43y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x43y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x43y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x43y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x44y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x44y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x44y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x44y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x45y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x45y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x45y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x45y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x46y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x46y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x46y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x46y54.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x47y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x47y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x47y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x47y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x47y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x47y54.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x48y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x48y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x48y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x48y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x48y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x48y54.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x49y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x49y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x49y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x49y54.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x50y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x50y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x50y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x50y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x50y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x50y53.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x50y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x50y54.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x52y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x52y53.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x53y48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x53y48.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x53y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x53y49.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x53y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x53y50.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x53y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x53y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x53y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x53y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x53y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x53y53.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x54y48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x54y48.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x54y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x54y49.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x54y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x54y50.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x54y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x54y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x54y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x54y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/imports/final/x54y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/imports/final/x54y53.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x41y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x41y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x41y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x41y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x41y56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x41y56.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x42y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x42y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x42y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x42y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x42y56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x42y56.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x43y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x43y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x43y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x43y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x44y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x44y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x44y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x44y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x45y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x45y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x45y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x45y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x46y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x46y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x46y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x46y54.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x47y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x47y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x47y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x47y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x47y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x47y54.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x48y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x48y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x48y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x48y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x48y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x48y54.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x49y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x49y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x49y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x49y54.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x49y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x49y55.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x50y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x50y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x50y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x50y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x50y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x50y53.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x50y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x50y54.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x52y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x52y53.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x53y48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x53y48.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x53y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x53y49.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x53y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x53y50.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x53y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x53y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x53y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x53y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x53y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x53y53.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x54y48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x54y48.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x54y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x54y49.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x54y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x54y50.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x54y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x54y51.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x54y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x54y52.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/maps/final/x54y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/maps/final/x54y53.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/tower1/imports/tower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/tower1/imports/tower.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/tower1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/tower1/main.cpp -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/tower1/maps/tower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/tower1/maps/tower.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/tower2/imports/tower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/tower2/imports/tower.txt -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/tower2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/tower2/main.cpp -------------------------------------------------------------------------------- /tools/editors/Final Level Editor/tower2/maps/tower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Final Level Editor/tower2/maps/tower.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/rx50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/rx50y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x48y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x48y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x48y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x48y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x49y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x49y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x49y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x49y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x49y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x49y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x49y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x49y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x49y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x49y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x50y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x50y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x50y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x50y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x50y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x50y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x50y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x50y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x50y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x50y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x50y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x50y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x50y58.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x51y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x51y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x51y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x51y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x51y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x51y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x51y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x51y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x51y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x51y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x51y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x51y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x51y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x51y58.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x52y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x52y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x52y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x52y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x52y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x52y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x52y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x52y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x52y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x52y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x52y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x52y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x52y56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x52y56.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x52y57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x52y57.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x52y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x52y58.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x53y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x53y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x53y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x53y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x53y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x53y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x53y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x53y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x54y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x54y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x54y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x54y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x54y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x54y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x54y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x54y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x55y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x55y49.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x55y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x55y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x55y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x55y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x55y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x55y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x55y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x55y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/lab/x55y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/lab/x55y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/otherlevel/x1y1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/otherlevel/x1y1.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/otherlevel/x50y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/otherlevel/x50y49.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/imports/otherlevel/x50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/imports/otherlevel/x50y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x48y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x48y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x48y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x48y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x49y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x49y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x49y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x49y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x49y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x49y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x49y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x49y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x49y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x49y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x50y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x50y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x50y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x50y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x50y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x50y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x50y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x50y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x50y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x50y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x50y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x50y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x50y58.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x51y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x51y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x51y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x51y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x51y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x51y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x51y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x51y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x51y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x51y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x51y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x51y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x51y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x51y58.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x52y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x52y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x52y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x52y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x52y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x52y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x52y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x52y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x52y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x52y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x52y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x52y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x52y56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x52y56.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x52y57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x52y57.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x52y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x52y58.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x53y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x53y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x53y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x53y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x53y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x53y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x53y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x53y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x54y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x54y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x54y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x54y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x54y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x54y54.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x54y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x54y55.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x55y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x55y49.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x55y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x55y50.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x55y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x55y51.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x55y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x55y52.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x55y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x55y53.txt -------------------------------------------------------------------------------- /tools/editors/Lab Map Editor/maps/lab/x55y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Lab Map Editor/maps/lab/x55y54.txt -------------------------------------------------------------------------------- /tools/editors/Level Mapping Editor/import.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Level Mapping Editor/import.txt -------------------------------------------------------------------------------- /tools/editors/Level Mapping Editor/lab/import.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Level Mapping Editor/lab/import.txt -------------------------------------------------------------------------------- /tools/editors/Level Mapping Editor/lab/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Level Mapping Editor/lab/output.txt -------------------------------------------------------------------------------- /tools/editors/Level Mapping Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Level Mapping Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/Level Mapping Editor/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Level Mapping Editor/output.txt -------------------------------------------------------------------------------- /tools/editors/Level Mapping Editor/warpzone/import.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Level Mapping Editor/warpzone/import.txt -------------------------------------------------------------------------------- /tools/editors/Level Mapping Editor/warpzone/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Level Mapping Editor/warpzone/output.txt -------------------------------------------------------------------------------- /tools/editors/Original Space Station Map Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Original Space Station Map Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/imports/otherlevel/x1y1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/imports/otherlevel/x1y1.txt -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/maps/otherlevel/x1y1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/maps/otherlevel/x1y1.txt -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/maps/otherlevel/x46y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/maps/otherlevel/x46y49.txt -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/maps/otherlevel/x47y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/maps/otherlevel/x47y49.txt -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/maps/otherlevel/x48y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/maps/otherlevel/x48y49.txt -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/maps/otherlevel/x48y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/maps/otherlevel/x48y50.txt -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/maps/otherlevel/x48y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/maps/otherlevel/x48y51.txt -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/maps/otherlevel/x49y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/maps/otherlevel/x49y49.txt -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/maps/otherlevel/x49y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/maps/otherlevel/x49y50.txt -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/maps/otherlevel/x50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/maps/otherlevel/x50y50.txt -------------------------------------------------------------------------------- /tools/editors/Other Map Editor/maps/otherlevel/x51y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Other Map Editor/maps/otherlevel/x51y50.txt -------------------------------------------------------------------------------- /tools/editors/Screenshot Outputting Map Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Screenshot Outputting Map Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/Space Station 2 Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Space Station 2 Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/Tower Map Editor/imports/tower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Tower Map Editor/imports/tower.txt -------------------------------------------------------------------------------- /tools/editors/Tower Map Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Tower Map Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/Tower Map Editor/maps/tower (background).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Tower Map Editor/maps/tower (background).txt -------------------------------------------------------------------------------- /tools/editors/Tower Map Editor/maps/tower (foreground).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Tower Map Editor/maps/tower (foreground).txt -------------------------------------------------------------------------------- /tools/editors/Tower Map Editor/maps/tower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Tower Map Editor/maps/tower.txt -------------------------------------------------------------------------------- /tools/editors/Towerhallways Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Towerhallways Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x49y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x49y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x50y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x50y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x50y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x50y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x50y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x51y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x51y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x51y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x51y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x51y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x51y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x52y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x52y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x52y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x52y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x52y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x52y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x52y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x52y52.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x53y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x53y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x53y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x53y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x53y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x53y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x53y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x53y52.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x54y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x54y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x54y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x54y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x54y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x54y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x54y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x54y52.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x55y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x55y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x55y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x55y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x55y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x55y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/imports/warp/x55y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/imports/warp/x55y52.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x49y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x49y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x50y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x50y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x50y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x50y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x50y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x51y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x51y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x51y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x51y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x51y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x51y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x52y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x52y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x52y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x52y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x52y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x52y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x52y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x52y52.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x53y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x53y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x53y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x53y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x53y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x53y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x53y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x53y52.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x54y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x54y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x54y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x54y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x54y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x54y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x54y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x54y52.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x55y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x55y49.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x55y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x55y50.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x55y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x55y51.txt -------------------------------------------------------------------------------- /tools/editors/Warp Zone Map Editor/maps/warp/x55y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/Warp Zone Map Editor/maps/warp/x55y52.txt -------------------------------------------------------------------------------- /tools/editors/World Map Fork (for Eurogamer)/areamap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Map Fork (for Eurogamer)/areamap.txt -------------------------------------------------------------------------------- /tools/editors/World Map Fork (for Eurogamer)/areamapin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Map Fork (for Eurogamer)/areamapin.txt -------------------------------------------------------------------------------- /tools/editors/World Map Fork (for Eurogamer)/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Map Fork (for Eurogamer)/input.hpp -------------------------------------------------------------------------------- /tools/editors/World Map Fork (for Eurogamer)/logic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Map Fork (for Eurogamer)/logic.hpp -------------------------------------------------------------------------------- /tools/editors/World Map Fork (for Eurogamer)/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Map Fork (for Eurogamer)/main.cpp -------------------------------------------------------------------------------- /tools/editors/World Map Fork (for Eurogamer)/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Map Fork (for Eurogamer)/map.hpp -------------------------------------------------------------------------------- /tools/editors/World Map Fork (for Eurogamer)/minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Map Fork (for Eurogamer)/minimap.png -------------------------------------------------------------------------------- /tools/editors/World Map Fork (for Eurogamer)/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Map Fork (for Eurogamer)/misc.hpp -------------------------------------------------------------------------------- /tools/editors/World Map Fork (for Eurogamer)/overworld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Map Fork (for Eurogamer)/overworld.txt -------------------------------------------------------------------------------- /tools/editors/World Map Fork (for Eurogamer)/render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Map Fork (for Eurogamer)/render.hpp -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/areamap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/areamap.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/areamapin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/areamapin.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x48y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x48y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x48y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x48y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x49y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x49y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x49y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x49y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x49y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x49y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x49y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x49y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x49y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x49y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x50y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x50y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x50y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x50y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x50y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x50y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x50y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x50y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x50y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x50y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x50y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x50y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x50y58.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x51y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x51y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x51y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x51y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x51y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x51y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x51y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x51y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x51y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x51y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x51y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x51y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x51y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x51y58.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x52y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x52y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x52y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x52y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x52y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x52y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x52y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x52y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x52y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x52y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x52y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x52y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x52y56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x52y56.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x52y57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x52y57.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x52y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x52y58.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x53y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x53y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x53y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x53y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x53y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x53y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x53y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x53y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x54y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x54y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x54y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x54y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x54y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x54y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x54y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x54y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x55y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x55y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x55y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x55y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x55y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x55y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x55y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x55y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x55y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x55y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/lab/x55y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/lab/x55y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x49y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x49y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x50y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x50y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x50y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x51y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x51y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x51y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x51y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x51y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x51y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x51y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x51y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x52y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x52y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x52y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x52y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x52y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x52y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x52y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x52y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x53y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x53y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x53y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x53y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x53y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x53y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x53y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x53y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x54y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x54y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x54y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x54y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x54y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x54y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x54y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x54y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x55y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x55y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x55y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x55y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x55y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x55y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/imports/warp/x55y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/imports/warp/x55y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/input.hpp -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/logic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/logic.hpp -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/main.cpp -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/map.hpp -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x48y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x48y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x48y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x48y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x49y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x49y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x49y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x49y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x49y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x49y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x49y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x49y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x49y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x49y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x50y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x50y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x50y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x50y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x50y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x50y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x50y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x50y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x50y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x50y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x50y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x50y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x50y58.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x51y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x51y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x51y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x51y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x51y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x51y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x51y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x51y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x51y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x51y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x51y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x51y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x51y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x51y58.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x52y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x52y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x52y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x52y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x52y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x52y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x52y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x52y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x52y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x52y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x52y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x52y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x52y56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x52y56.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x52y57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x52y57.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x52y58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x52y58.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x53y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x53y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x53y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x53y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x53y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x53y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x53y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x53y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x54y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x54y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x54y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x54y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x54y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x54y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x54y55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x54y55.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x55y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x55y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x55y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x55y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x55y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x55y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x55y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x55y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x55y53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x55y53.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/lab/x55y54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/lab/x55y54.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y100.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y101.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y102.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y103.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y104.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y105.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y106.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y107.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y108.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y109.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y110.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y111.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y112.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y113.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y114.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y115.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y116.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x100y117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x100y117.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y102.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y103.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y104.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y105.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y106.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y108.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y109.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y110.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y111.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y112.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y113.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y114.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y115.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x101y116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x101y116.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y102.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y103.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y105.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y106.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y108.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y109.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y110.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y111.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y112.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y113.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/other/x102y114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/other/x102y114.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x49y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x49y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x50y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x50y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x50y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x50y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x51y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x51y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x51y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x51y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x51y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x51y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x51y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x51y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x52y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x52y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x52y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x52y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x52y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x52y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x52y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x52y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x53y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x53y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x53y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x53y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x53y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x53y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x53y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x53y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x54y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x54y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x54y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x54y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x54y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x54y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x54y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x54y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x55y49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x55y49.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x55y50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x55y50.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x55y51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x55y51.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/maps/warp/x55y52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/maps/warp/x55y52.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/minimap.png -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/misc.hpp -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/overworld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/overworld.txt -------------------------------------------------------------------------------- /tools/editors/World Mapping Editor/render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/editors/World Mapping Editor/render.hpp -------------------------------------------------------------------------------- /tools/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v6cord/VVVVVV-CE/HEAD/tools/readme.MD --------------------------------------------------------------------------------