├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .nojekyll ├── INSTALL.txt ├── LICENSE.md ├── README.md ├── _config.yml ├── console ├── Audiowide-Regular.ttf ├── LoadManager.js ├── PxPlus_AmstradPC1512-2y.ttf ├── WorkJSON.js ├── ace │ ├── ace.js │ ├── ext-searchbox.js │ ├── mode-html.js │ ├── mode-javascript.js │ ├── mode-json.js │ ├── mode-markdown.js │ ├── mode-pyxlscript.js │ ├── mode-xml.js │ ├── mode-yaml.js │ └── theme-quadplay.js ├── app.html ├── controller-buttons.png ├── controller-dpad.png ├── controller-e.png ├── controller-f.png ├── controller-p.png ├── controller-q.png ├── controls.html ├── download-icon.png ├── external-applications.json ├── filters.js ├── gamepad.png ├── games.json ├── gear.png ├── icons │ ├── button-meta.png │ ├── button-p.png │ ├── button-pause.png │ ├── button-play.png │ ├── button-reload.png │ ├── button-slow.png │ ├── button-step.png │ ├── button-stop.png │ ├── favicon-120x120.png │ ├── favicon-32x32.png │ ├── favicon-64x64.png │ ├── favicon.ico │ ├── icon-controller-absent.png │ ├── icon-controller-present.png │ ├── icon-midi-absent.png │ ├── icon-midi-present.png │ ├── project-badge-cloud.png │ ├── project-badge-lock.png │ ├── project-icon-2D.png │ ├── project-icon-3D.png │ ├── project-icon-array.png │ ├── project-icon-boolean.png │ ├── project-icon-cloud.png │ ├── project-icon-code.png │ ├── project-icon-color.png │ ├── project-icon-data.png │ ├── project-icon-distribution.png │ ├── project-icon-doc.png │ ├── project-icon-font.png │ ├── project-icon-lock.png │ ├── project-icon-map.png │ ├── project-icon-mode.png │ ├── project-icon-nil.png │ ├── project-icon-number.png │ ├── project-icon-object.png │ ├── project-icon-reference.png │ ├── project-icon-sound.png │ ├── project-icon-sprite.png │ ├── project-icon-string.png │ ├── project-icon-table.png │ ├── ui-bigfont.png │ ├── ui-debug.png │ ├── ui-develop.png │ ├── ui-edit.png │ ├── ui-find-in-files.png │ ├── ui-find.png │ ├── ui-fullscreen.png │ ├── ui-ghost.png │ ├── ui-goto.png │ ├── ui-home.png │ ├── ui-open.png │ ├── ui-pin.png │ ├── ui-redo.png │ ├── ui-smallfont.png │ ├── ui-speaker.png │ ├── ui-test.png │ ├── ui-touchscreen-fullscreen.png │ ├── ui-touchscreen.png │ ├── ui-undo.png │ └── ui-windowed.png ├── keyboard.png ├── launcher │ ├── _Message.pyxl │ ├── _Play.pyxl │ ├── _SlideOut.pyxl │ ├── boop.mp3 │ ├── boop.sound.json │ ├── icon.sprite.json │ ├── icons-20x13.png │ ├── icons.sprite.json │ ├── label128.png │ ├── label64.png │ └── launcher.game.json ├── lib │ ├── dagre.min.js │ ├── decomp.min.js │ ├── gif.js │ ├── gif.worker.js │ ├── js-yaml.min.js │ ├── jszip.min.js │ ├── lz-string.min.js │ ├── matter.min.js │ ├── peerjs.min.js │ ├── qrcode.min.js │ ├── serialize.js │ ├── vectorify.js │ └── versions.txt ├── logo-116x20.png ├── logo-51x9.png ├── logo-58x10.png ├── logo.png ├── matter-extensions.js ├── os │ ├── _ConfirmDialog.pyxl │ ├── _ControllerOrder.pyxl │ ├── _ControlsMenu.pyxl │ ├── _GameCredits.pyxl │ ├── _NewHost.pyxl │ ├── _OnlineMenu.pyxl │ ├── _SetControls.pyxl │ ├── _SetControls64.pyxl │ ├── _SystemMenu.pyxl │ ├── _ui.pyxl │ ├── dependencies.py │ ├── logo.sprite.json │ ├── opaque.png │ ├── opaque.sprite.json │ ├── pause-message.png │ ├── pause-message.sprite.json │ └── startup-logo.png ├── pyxlscript-compiler.js ├── quadplay-browser-audio.js ├── quadplay-browser-touch.js ├── quadplay-browser.js ├── quadplay-conduit.js ├── quadplay-font.js ├── quadplay-ide-asset.js ├── quadplay-ide-code.js ├── quadplay-ide-constant.js ├── quadplay-ide-debug.js ├── quadplay-ide-game.js ├── quadplay-ide-help.js ├── quadplay-ide-mode-diagram.js ├── quadplay-ide-sprite.js ├── quadplay-ide-vcs.js ├── quadplay-ide.js ├── quadplay-load.js ├── quadplay-midi.js ├── quadplay-network.js ├── quadplay-profiler.js ├── quadplay-runtime-ai.js ├── quadplay-runtime-common.js ├── quadplay-runtime-cpu.js ├── quadplay-runtime-gpu.js ├── quadplay-runtime-physics.js ├── quadplay-serialize.js ├── quadplay.css ├── quadplay.html ├── quadplay.js ├── sound-icon.png ├── startup-logo.png ├── templates │ ├── design.html │ ├── design.md │ ├── design.md.html │ ├── design.txt │ ├── empty.html │ ├── empty.md │ ├── empty.md.html │ ├── empty.txt │ ├── map.map.json │ ├── sound.mp3 │ ├── sound.sound.json │ ├── sprite.png │ ├── sprite.sprite.json │ ├── todo.html │ ├── todo.md │ ├── todo.md.html │ └── todo.txt ├── version.js ├── wraps │ ├── carbon.png │ ├── dots.png │ ├── oak.jog │ ├── oak.jpg │ ├── stripes.png │ └── walnut_burl.jpg └── xbox_controller.png ├── data ├── .gitignore ├── english_all.csv.zip ├── english_all_array.data.json ├── english_all_table.data.json ├── english_common.csv.zip ├── english_common_array.data.json ├── english_common_table.data.json ├── english_offensive.csv.zip ├── english_offensive_table.data.json ├── english_sensitive.csv.zip └── english_sensitive_table.data.json ├── doc ├── OFL.txt ├── Roboto-License.txt ├── Roboto-Light.ttf ├── adblock.html ├── add-non-steam.png ├── api.md.html ├── arcade.jpg ├── assets.md.html ├── changelog.md.html ├── desktop.jpg ├── dualshock4.jpg ├── emulator.png ├── external-editor.png ├── font-layout.png ├── genesis.jpg ├── github-example.txt ├── gpd-win.jpg ├── gpd-win3.jpg ├── host-tab.png ├── ide.png ├── itch.png ├── joy-con.jpg ├── laptop.jpg ├── launch-chrome.png ├── lib.md.html ├── logos │ ├── quadplay-logo-gradient-round.png │ ├── quadplay-logo-gradient.png │ └── quadplay-logo-gray.png ├── m30.jpg ├── manual.css ├── manual.md.html ├── markdeep.min.js ├── mobile-tab.png ├── modes.png ├── nano-arcade.jpg ├── new-map-dialog.png ├── phone.jpg ├── postgoodism.jpg ├── pyxlscript-doc.js ├── quad-arcade.jpg ├── quadplay-palette.png ├── right-arcade.jpg ├── rpi-arcade.jpg ├── serpitron_title_alpha.png ├── slate.css ├── sn30-pro.jpg ├── sn30.jpg ├── steamdeck.jpg ├── switch-pro.jpg ├── symmetric-arcade.jpg ├── text-style.png ├── text-tricks.png ├── thrustmaster.jpg ├── tiled-new-map.png ├── xarcade-arcade.jpg ├── xarcade-dual.jpg ├── xarcade-keyboard.png ├── xarcade-mapping.png ├── xbox360.jpg ├── xboxone.jpg └── zero2.jpg ├── examples ├── anim_entity_example │ ├── .gitignore │ ├── Play.pyxl │ ├── anim_entity.pyxl │ ├── anim_entity_example.game.json │ ├── label128.png │ ├── label64.png │ └── preview.png ├── animation │ ├── Play.pyxl │ ├── animation.game.json │ ├── label128.png │ └── label64.png ├── bezier_eye_creature │ ├── .gitignore │ ├── Creature.pyxl │ ├── Makefile │ ├── Makefile.defs │ ├── ParamWedge.pyxl │ ├── Play.pyxl │ ├── bezier_eye_creature.game.json │ ├── label128.png │ ├── label64.png │ ├── librope.pyxl │ └── preview.png ├── boids │ ├── Boids.pyxl │ ├── boids.game.json │ ├── label128.png │ └── label64.png ├── camera_shake │ ├── Play.pyxl │ ├── TODO.md │ ├── camera_shake.game.json │ ├── camera_shake.pyxl │ ├── label128.png │ └── label64.png ├── cards │ ├── .gitignore │ ├── Play.pyxl │ ├── card.pyxl │ ├── cards.game.json │ ├── label128.png │ └── label64.png ├── change_res │ ├── Play.pyxl │ ├── background.map.json │ ├── background.tmx │ ├── change_res.game.json │ ├── label128.png │ └── label64.png ├── clouds │ ├── Play.pyxl │ ├── clouds.game.json │ ├── label128.png │ ├── label64.png │ ├── palette.png │ └── palette.sprite.json ├── color_wheel │ ├── .gitignore │ ├── Play.pyxl │ ├── color_wheel.game.json │ ├── label128.png │ └── label64.png ├── coordinate_system │ ├── .gitignore │ ├── Play.pyxl │ ├── coordinate_system.game.json │ ├── label128.png │ └── label64.png ├── countdown │ ├── Play.pyxl │ ├── countdown.game.json │ ├── label128.png │ └── label64.png ├── dark_drive │ ├── .gitignore │ ├── End.pyxl │ ├── Play.pyxl │ ├── Title.pyxl │ ├── accel.pyxl │ ├── audio_system.pyxl │ ├── constants.pyxl │ ├── dark_drive.game.json │ ├── draw.pyxl │ ├── gameplay.pyxl │ ├── label128.png │ ├── label64.png │ ├── rain_lib.pyxl │ ├── sounds │ │ ├── ambience_loop.mp3 │ │ ├── ambience_loop.sound.json │ │ ├── car_start.mp3 │ │ ├── car_start.sound.json │ │ ├── cardoor_open_and_close.mp3 │ │ ├── cardoor_open_and_close.sound.json │ │ ├── frogs_crickets.mp3 │ │ ├── frogs_crickets.sound.json │ │ ├── idle_loop.mp3 │ │ ├── idle_loop.sound.json │ │ ├── key_turning.mp3 │ │ ├── key_turning.sound.json │ │ ├── rain_loop.mp3 │ │ ├── rain_loop.sound.json │ │ ├── skid.mp3 │ │ ├── skid.sound.json │ │ ├── sound_json_generator.py │ │ ├── thunder.mp3 │ │ └── thunder.sound.json │ ├── sprites │ │ ├── car1.png │ │ ├── car1.sprite.json │ │ ├── car2.png │ │ ├── car2.sprite.json │ │ ├── car3.png │ │ ├── car3.sprite.json │ │ ├── car4.png │ │ ├── car4.sprite.json │ │ ├── demogorgon.png │ │ ├── demogorgon.sprite.json │ │ ├── mud1.png │ │ ├── mud1.sprite.json │ │ ├── mud2.png │ │ ├── mud2.sprite.json │ │ ├── mud3.png │ │ ├── mud3.sprite.json │ │ ├── mud4.png │ │ ├── mud4.sprite.json │ │ ├── mud5.png │ │ ├── mud5.sprite.json │ │ ├── obstacles.png │ │ └── obstacles.sprite.json │ └── test_drive.pyxl ├── dice │ ├── .gitignore │ ├── Play.pyxl │ ├── Spin.pyxl │ ├── dice.game.json │ ├── dragon.png │ ├── dragon.sprite.json │ ├── export3D │ │ └── export.cpp │ ├── icon.png │ ├── icon.sprite.json │ ├── label128.png │ ├── label64.png │ ├── pip.png │ └── pip.sprite.json ├── dual-stick │ ├── Play.pyxl │ ├── dual-stick.game.json │ ├── label128.png │ ├── label64.png │ ├── tank.png │ └── tank.sprite.json ├── dynamic_accel │ ├── Play.pyxl │ ├── accel_demo.game.json │ ├── accel_lib.pyxl │ ├── demo.pyxl │ ├── dynamic_accel.game.json │ ├── label128.png │ └── label64.png ├── entity │ ├── Play.pyxl │ ├── entity.game.json │ ├── label128.png │ ├── label64.png │ ├── text.png │ └── text.sprite.json ├── fluid │ ├── Play.pyxl │ ├── background.png │ ├── background.sprite.json │ ├── fluid.game.json │ ├── grid.pyxl │ ├── label128.png │ ├── label64.png │ └── util.pyxl ├── fontpreview │ ├── Play.pyxl │ ├── fontpreview.game.json │ ├── label128.png │ └── label64.png ├── gridmove │ ├── Play.pyxl │ ├── grid-tiles-8x8.png │ ├── grid-tiles-8x8.sprite.json │ ├── gridmove.game.json │ ├── label128.png │ ├── label64.png │ ├── map01.map.json │ ├── map01.tmx │ ├── tank.png │ └── tank.sprite.json ├── gui │ ├── .gitignore │ ├── Play.pyxl │ ├── gui.game.json │ ├── label128.png │ └── label64.png ├── helloworld │ ├── Hello.pyxl │ ├── helloworld.game.json │ ├── label128.png │ └── label64.png ├── hex │ ├── Play.pyxl │ ├── hex.game.json │ ├── label128.png │ └── label64.png ├── highscore │ ├── EnterScore.pyxl │ ├── Play.pyxl │ ├── highscore.game.json │ ├── label128.png │ └── label64.png ├── input │ ├── Play.pyxl │ ├── input.game.json │ ├── label128.png │ └── label64.png ├── islands │ ├── Play.pyxl │ ├── ball.pyxl │ ├── boat.pyxl │ ├── islands.game.json │ ├── label128.png │ ├── label64.png │ ├── map_color.png │ ├── map_color.sprite.json │ ├── map_height.data.json │ ├── map_height.png │ ├── water.pyxl │ ├── water_palette.png │ └── water_palette.sprite.json ├── kart │ ├── Play.pyxl │ ├── car-80x35.png │ ├── car.sprite.json │ ├── kart.game.json │ ├── label128.png │ ├── label64.png │ ├── mountains.png │ ├── mountains.sprite.json │ ├── world.map.json │ └── world.tmx ├── lift_team │ ├── Play.pyxl │ ├── cloud.png │ ├── cloud.sprite.json │ ├── label128.png │ ├── label64.png │ ├── lift_team.game.json │ ├── lift_team.json │ ├── player_chopper.png │ ├── player_chopper.sprite.json │ ├── player_mech.png │ ├── player_mech.sprite.json │ ├── quantum_district.map.json │ ├── quantum_district.tmx │ ├── urban_scifi.png │ └── urban_scifi.sprite.json ├── maze │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ ├── map.map.json │ ├── map.tmx │ ├── maze.game.json │ └── miniroguelike-8x8.sprite.json ├── midi_8x8 │ ├── .gitignore │ ├── Play.pyxl │ ├── controllers.jpg │ ├── demo.pyxl │ ├── get_ready.png │ ├── get_ready.sprite.json │ ├── jam_notes.md.html │ ├── label128.png │ ├── label64.png │ ├── midi_8x8.game.json │ └── title.png ├── midi_fcb1010 │ ├── .gitignore │ ├── Play.pyxl │ ├── device.png │ ├── device.sprite.json │ ├── label128.png │ ├── label64.png │ └── midi_fcb1010.game.json ├── midi_launchpad │ ├── .gitignore │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ └── midi_launchpad.game.json ├── midi_starrypad │ ├── .gitignore │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ ├── logo.png │ ├── logo.sprite.json │ └── midi_starrypad.game.json ├── multitouch │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ └── multitouch.game.json ├── perceptual_color │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ └── perceptual_color.game.json ├── physics │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ └── physics.game.json ├── physics_arrow │ ├── Play.pyxl │ ├── arrow.png │ ├── arrow.sprite.json │ ├── label128.png │ ├── label64.png │ └── physics_arrow.game.json ├── piano │ ├── Play.pyxl │ ├── bossa_nova.mp3 │ ├── bossa_nova.sound.json │ ├── label128.png │ ├── label64.png │ ├── piano.game.json │ ├── synth.mp3 │ └── synth.sound.json ├── planetgen │ ├── ShowPlanet.pyxl │ ├── label128.png │ ├── label64.png │ ├── planet.pyxl │ └── planetgen.game.json ├── platformer │ ├── .gitignore │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ ├── map.pyxl │ ├── plat4mer_sprite.png │ ├── platformer.game.json │ ├── player.pyxl │ ├── spritesheet.png │ ├── spritesheet.sprite.json │ ├── starter.map.json │ └── starter.tmx ├── private_view │ ├── Lobby.pyxl │ ├── Play.pyxl │ ├── Test.pyxl │ ├── Title.pyxl │ ├── card.pyxl │ ├── game.pyxl │ ├── label128.png │ ├── label64.png │ └── private_view.game.json ├── robot │ ├── Play.pyxl │ ├── gradient.png │ ├── gradient.sprite.json │ ├── label128.png │ ├── label64.png │ ├── robot-28x28.png │ ├── robot.game.json │ └── robot.sprite.json ├── roguelike │ ├── Play.pyxl │ ├── design.md.html │ ├── label128.png │ ├── label64.png │ ├── roguelike.game.json │ ├── roguelike.map.json │ ├── roguelike.tmx │ ├── vignette.png │ └── vignette.sprite.json ├── rpg │ ├── Credits.pyxl │ ├── GameOver.pyxl │ ├── Inventory.pyxl │ ├── Pause.pyxl │ ├── Play.pyxl │ ├── Shop.pyxl │ ├── Title.pyxl │ ├── Win.pyxl │ ├── castle.map.json │ ├── castle.tmx │ ├── label128.png │ ├── label64.png │ ├── rpg.game.json │ ├── rpg.pyxl │ ├── world.map.json │ └── world.tmx ├── sequence_demo │ ├── Play.pyxl │ ├── TODO.md │ ├── label128.png │ ├── label64.png │ ├── sequence_demo.game.json │ └── turn_transition_lib.pyxl ├── speedstreet │ ├── Play.pyxl │ ├── Title.pyxl │ ├── bike.pyxl │ ├── bikePart.png │ ├── bikePart.sprite.json │ ├── city.map.json │ ├── city.tmx │ ├── label.psd │ ├── label128.png │ ├── label64.png │ ├── logo.png │ ├── logo.sprite.json │ ├── physics.pyxl │ ├── preview.png │ ├── speedstreet.game.json │ ├── titleBackground.map.json │ ├── titleBackground.tmx │ ├── wheels.png │ └── wheels.sprite.json ├── spritestack │ ├── .gitignore │ ├── Play.pyxl │ ├── blue_car.sprite.json │ ├── camera.pyxl │ ├── city.map.json │ ├── city.tmx │ ├── entity.pyxl │ ├── firetruck-60x26.png │ ├── firetruck.sprite.json │ ├── label128.png │ ├── label64.png │ ├── map.pyxl │ ├── sedan-34x16.png │ ├── sedan.sprite.json │ ├── shadow_map.pyxl │ ├── spritestack.game.json │ ├── tiles-64x64.png │ └── tiles.sprite.json ├── sproing │ ├── Play.pyxl │ ├── bounce_lib.pyxl │ ├── label128.png │ ├── label64.png │ └── sproing.game.json ├── starter │ ├── Play.pyxl │ ├── TODO.md │ ├── label128.png │ ├── label64.png │ └── starter.game.json ├── text │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ └── text.game.json ├── textspheres │ ├── Title.pyxl │ ├── background.png │ ├── background.sprite.json │ ├── label128.png │ ├── label64.png │ ├── textspheres.game.json │ ├── title.png │ ├── title.sprite.json │ ├── title_bloom.png │ ├── title_bloom.sprite.json │ ├── title_center.png │ └── title_center.sprite.json ├── tic_tac_toe │ ├── .gitignore │ ├── GameOver.pyxl │ ├── Play.pyxl │ ├── board.pyxl │ ├── label128.png │ ├── label64.png │ └── tic_tac_toe.game.json ├── touch │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ └── touch.game.json ├── track_mouse │ ├── Play.pyxl │ ├── label128.png │ └── label64.png ├── twin_analog │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ ├── player.pyxl │ ├── player_bullet.png │ ├── player_bullet.sprite.json │ ├── player_gun.png │ ├── player_gun.sprite.json │ ├── player_ship.png │ ├── player_ship.sprite.json │ ├── player_thruster.png │ ├── player_thruster.sprite.json │ └── twin_analog.game.json ├── vaporwave │ ├── Play.pyxl │ ├── darkFuture.mp3 │ ├── darkFuture.sound.json │ ├── game.pyxl │ ├── hoverBank.mp3 │ ├── hoverBank.sound.json │ ├── hoverSpin.mp3 │ ├── hoverSpin.sound.json │ ├── hoverStop.mp3 │ ├── hoverStop.sound.json │ ├── hovertank.png │ ├── hovertank.pyxl │ ├── hovertank.sprite.json │ ├── label128.png │ ├── label64.png │ ├── launcher.pyxl │ ├── logo.sprite.json │ ├── mesh.pyxl │ ├── neon-logo.png │ └── vaporwave.game.json ├── vehicles │ ├── Play.pyxl │ ├── car.sprite.json │ ├── car_bicubic.png │ ├── chopper_blades.sprite.json │ ├── chopper_blades_bicubic.png │ ├── chopper_body.sprite.json │ ├── chopper_body_bicubic.png │ ├── hero_bicubic.png │ ├── hero_bicubic.sprite.json │ ├── label128.png │ ├── label64.png │ ├── tank_bicubic.png │ ├── tank_body.sprite.json │ ├── tank_turret.sprite.json │ ├── vehicles.game.json │ ├── world.map.json │ └── world.tmx ├── warlock3D │ ├── Play.pyxl │ ├── Title.pyxl │ ├── allagon.png │ ├── allagon.sprite.json │ ├── controls.pyxl │ ├── dungeon.map.json │ ├── dungeon.tmx │ ├── label128.png │ ├── label64.png │ ├── potion.png │ ├── potion.sprite.json │ ├── raycast.pyxl │ ├── tiles-64x64.png │ ├── tiles.sprite.json │ ├── title-192x112.png │ ├── title-192x112.sprite.json │ ├── title-384x224.png │ ├── title-384x224.sprite.json │ └── warlock3D.game.json ├── word_game │ ├── Intro.pyxl │ ├── Play.pyxl │ ├── accel_lib.pyxl │ ├── border.aseprite │ ├── border.json │ ├── border.png │ ├── border.sprite.json │ ├── constants.pyxl │ ├── keyhole_transition.pyxl │ ├── label128.png │ ├── label64.png │ ├── levels.yml │ ├── smw-7.font.json │ ├── smw-7.png │ └── word_game.game.json ├── zcar │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ ├── quad-car-source.zip │ ├── quad-car.pyxl │ ├── scanlines.png │ ├── scanlines.sprite.json │ ├── transformations.pyxl │ ├── vignette.png │ ├── vignette.sprite.json │ └── zcar.game.json ├── zoom │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ └── zoom.game.json └── zoom2D │ ├── Play.pyxl │ ├── label128.png │ ├── label64.png │ └── zoom2D.game.json ├── fonts ├── blackletter-14.font.json ├── blackletter-14.png ├── bogart-9.font.json ├── bogart-9.png ├── broderick-14.font.json ├── broderick-14.png ├── broderick-7.font.json ├── broderick-7.png ├── cga-7.font.json ├── cga-7.png ├── ching-9.font.json ├── ching-9.png ├── connelly-7.font.json ├── connelly-7.png ├── cpc-14.font.json ├── cpc-14.png ├── cruise-14.font.json ├── cruise-14.png ├── cruise-7.font.json ├── cruise-7.png ├── deja-15.font.json ├── deja-15.png ├── deja-3.font.json ├── deja-3.png ├── deja-4.font.json ├── deja-4.png ├── deja-5.font.json ├── deja-5.png ├── deja-6.font.json ├── deja-6.png ├── deja-7.font.json ├── deja-7.png ├── deja-8.font.json ├── deja-8.png ├── deja-9.font.json ├── deja-9.png ├── deja-bold-15.font.json ├── deja-bold-15.png ├── deja-mono-8.font.json ├── federation-11.font.json ├── federation-11.png ├── fool-9.font.json ├── fool-9.png ├── good-neighbors-9.font.json ├── good-neighbors-9.png ├── hauer-12.font.json ├── hauer-12.png ├── hauer-6.font.json ├── hauer-6.png ├── ivanhoe-12.font.json ├── ivanhoe-12.png ├── ivanhoe-bold-12.font.json ├── ivanhoe-bold-12.png ├── nano-3.font.json ├── nano-3.png ├── nano-4.font.json ├── nano-4.png ├── nano-5.font.json ├── nano-5.png ├── nanob-3.font.json ├── nanob-3.png ├── novarese-10.font.json ├── novarese-10.png ├── novarese-20.font.json ├── novarese-20.png ├── novarese-7.font.json ├── novarese-7.png ├── novarese-bold-10.font.json ├── novarese-bold-10.png ├── novarese-bold-20.font.json ├── novarese-bold-20.png ├── novarese-narrow-7.font.json ├── novarese-narrow-7.png ├── octant-17.font.json ├── octant-17.png ├── pryce-7.font.json ├── pryce-7.png ├── robot-18.font.json ├── robot-18.png ├── robot-9.font.json ├── robot-9.png ├── robot-mono-9.font.json ├── roman-8.font.json ├── roman-8.png ├── runes-9.font.json ├── runes-9.png ├── scoreboard-5.font.json ├── scoreboard-5.png ├── scoreboard-6.font.json ├── scoreboard-6.png ├── scoreboard-7.font.json ├── scoreboard-7.png ├── stencil-9.font.json ├── stencil-9.png ├── suchet-12.font.json ├── suchet-12.png ├── suchet-9.font.json ├── suchet-9.png ├── thompson-8.font.json ├── thompson-8.png ├── weaver-10.font.json ├── weaver-10.png ├── weaver-5.font.json ├── weaver-5.png ├── weaver-7.font.json ├── weaver-7.png ├── wright-8.font.json └── wright-8.png ├── games ├── across_the_lake │ ├── .gitignore │ ├── GameOver.pyxl │ ├── Makefile │ ├── Play.pyxl │ ├── Title.pyxl │ ├── across_the_lake.game.json │ ├── bgm.sound.json │ ├── cabins_0.png │ ├── cabins_0.sprite.json │ ├── camera.pyxl │ ├── dead_trees_0.png │ ├── dead_trees_0.sprite.json │ ├── dead_trees_1.png │ ├── dead_trees_1.sprite.json │ ├── design.md │ ├── draw.pyxl │ ├── hills.png │ ├── hills.sprite.json │ ├── label128.png │ ├── label64.png │ ├── live_trees_0.png │ ├── live_trees_0.sprite.json │ ├── mountains.png │ ├── mountains.sprite.json │ ├── music │ │ ├── skippingOnce.mp3 │ │ ├── skippingOnce_tk2.mp3 │ │ ├── skippingSfx_sink.mp3 │ │ ├── skippingSfx_tone1.mp3 │ │ ├── skippingSfx_tone2.mp3 │ │ ├── skippingSfx_tone4.mp3 │ │ ├── skippingSfx_tone5.mp3 │ │ ├── skippingSfx_windToss.mp3 │ │ └── skippingSfx_windToss_tk2.mp3 │ ├── night.png │ ├── night.sprite.json │ ├── night_hills.png │ ├── night_hills.sprite.json │ ├── night_mountains.png │ ├── night_mountains.sprite.json │ ├── preview.png │ ├── rock.aseprite │ ├── sink.sound.json │ ├── skippy.png │ ├── skippy.pyxl │ ├── skippy.sprite.json │ ├── splash.aseprite │ ├── splash.png │ ├── splash.sprite.json │ ├── splash1.sound.json │ ├── splash2.sound.json │ ├── splash3.sound.json │ ├── splash4.sound.json │ ├── splash5.sound.json │ ├── sunset.png │ ├── sunset.sprite.json │ ├── throw.sound.json │ ├── title-itch-630x500.png │ ├── title_text.png │ ├── title_text.sprite.json │ ├── twilight.png │ ├── twilight.sprite.json │ ├── twilight_mountains.png │ ├── twilight_mountains.sprite.json │ └── ui.pyxl ├── beat_the_gobblins │ ├── .gitignore │ ├── Banner.aseprite │ ├── DeadOutro.pyxl │ ├── Failed.pyxl │ ├── FreezeFrame.pyxl │ ├── Makefile │ ├── Play.pyxl │ ├── Title.pyxl │ ├── anim_entity.pyxl │ ├── beat_the_gobblins.game.json │ ├── bgdungeon_full.aseprite │ ├── bgdungeon_full.json │ ├── bgdungeon_full.png │ ├── bgdungeon_full.sprite.json │ ├── bomb.aseprite │ ├── bomb.json │ ├── bomb.png │ ├── bomb.sprite.json │ ├── bomb_throw.sound.json │ ├── bombgoblin.aseprite │ ├── bombgoblin.json │ ├── bombgoblin.png │ ├── bombgoblin.sprite.json │ ├── btw_lib.pyxl │ ├── chippy3_wip01.mp3 │ ├── chippy3_wip03_with_anvil.mp3 │ ├── chippy3_wip03_with_anvil.sound.json │ ├── clouds.map.json │ ├── clouds.tmx │ ├── clouds_layered.aseprite │ ├── clouds_layered.json │ ├── clouds_layered.png │ ├── clouds_layered.sprite.json │ ├── credits.aseprite │ ├── credits.json │ ├── credits.png │ ├── credits.sprite.json │ ├── debug.pyxl │ ├── die.sound.json │ ├── die_02.mp3 │ ├── driz_anim1.aseprite │ ├── driz_anim1.json │ ├── driz_anim1.png │ ├── driz_anim1.sprite.json │ ├── dust_try_two.aseprite │ ├── dust_try_two.json │ ├── dust_try_two.png │ ├── dust_try_two.sprite.json │ ├── hit_thing.sound.json │ ├── label128.aseprite │ ├── label128.png │ ├── label64.aseprite │ ├── label64.png │ ├── namtari-6x7.aseprite │ ├── namtari-6x7.json │ ├── namtari-6x7.png │ ├── namtari-6x7.sprite.json │ ├── ouch.mp3 │ ├── ouch.sound.json │ ├── palette.aseprite │ ├── play.sound.json │ ├── point_up.sound.json │ ├── preview.png │ ├── sfx.bfxrlibrary │ ├── snd │ │ ├── Default.bfxrsound │ │ ├── Default.wav │ │ ├── bomb_land.wav │ │ ├── bomb_throw.wav │ │ ├── hit_thing.wav │ │ ├── point_up.wav │ │ ├── sfx.bfxrlibrary │ │ ├── sfx.bfxrsound │ │ ├── splode.wav │ │ ├── summon_land.wav │ │ ├── summon_laser.wav │ │ └── swordswing1.wav │ ├── splash.aseprite │ ├── splash.json │ ├── splash.png │ ├── splash.sprite.json │ ├── splode.aseprite │ ├── splode.json │ ├── splode.png │ ├── splode.sound.json │ ├── splode.sprite.json │ ├── summon_land.sound.json │ ├── summon_laser.sound.json │ ├── swipe.mp3 │ ├── swipe.sound.json │ ├── title.sound.json │ ├── title_two_test.aseprite │ ├── title_two_test.json │ ├── title_two_test.png │ ├── title_two_test.sprite.json │ ├── tree_background.png │ ├── tree_background.sprite.json │ ├── treetop.aseprite │ ├── treetop.json │ └── treetop.png ├── beyond_control │ ├── CompetitiveIntro.pyxl │ ├── CompetitiveWin.pyxl │ ├── GameSelect.pyxl │ ├── MapSelect.pyxl │ ├── Play.pyxl │ ├── TITLE_SPARK_POS_ARRAY.csv │ ├── Title.pyxl │ ├── action.png │ ├── action.pyxl │ ├── action.sprite.json │ ├── battle_00.map.json │ ├── battle_00.tmx │ ├── battle_01.map.json │ ├── battle_01.tmx │ ├── battle_02.map.json │ ├── battle_02.tmx │ ├── battle_03.map.json │ ├── battle_03.tmx │ ├── battle_04.map.json │ ├── battle_04.tmx │ ├── battle_05.map.json │ ├── battle_05.tmx │ ├── beyond_control.game.json │ ├── global.pyxl │ ├── hex-32x32.png │ ├── hex-32x32.psd │ ├── hex.sprite.json │ ├── hex_grid.pyxl │ ├── itch-title.png │ ├── label128.png │ ├── label64.png │ ├── logo.png │ ├── logo.sprite.json │ ├── player.pyxl │ ├── preview.png │ ├── race_00.map.json │ ├── race_00.tmx │ ├── race_01.map.json │ ├── race_01.tmx │ ├── race_02.map.json │ ├── race_02.tmx │ ├── race_03.map.json │ ├── race_03.tmx │ ├── race_04.map.json │ ├── race_04.tmx │ ├── race_05.map.json │ ├── race_05.tmx │ ├── race_06.map.json │ ├── race_06.tmx │ ├── race_07.map.json │ ├── race_07.tmx │ ├── race_08.map.json │ ├── race_08.tmx │ ├── rainbow_arrow-30x30.png │ ├── rainbow_arrow.sprite.json │ ├── robot-72x72.png │ ├── robot.sprite.json │ ├── smoke.png │ ├── smoke.sprite.json │ ├── star-13x13.png │ ├── star-13x13.sprite.json │ ├── teleport.png │ ├── teleport.sprite.json │ ├── test_factory.map.json │ ├── test_factory.tmx │ ├── title.png │ ├── title.psd │ ├── title.sprite.json │ ├── vapor.pyxl │ ├── vfx.png │ └── vfx.sprite.json ├── but_skunks │ ├── Credits.pyxl │ ├── Cutscene.pyxl │ ├── GameOver.pyxl │ ├── Interstitial.pyxl │ ├── Menu.pyxl │ ├── Options.pyxl │ ├── Play.pyxl │ ├── attic.map.json │ ├── attic.tmx │ ├── basement.map.json │ ├── basement.tmx │ ├── bgm_claps.mp3 │ ├── bgm_claps.sound.json │ ├── bgm_in_game.mp3 │ ├── bgm_in_game.sound.json │ ├── bgm_in_game_intro.mp3 │ ├── bgm_in_game_intro.sound.json │ ├── bgm_in_game_muted.mp3 │ ├── bgm_in_game_muted.sound.json │ ├── bgm_menu.mp3 │ ├── bgm_menu.sound.json │ ├── blip.mp3 │ ├── blip.sound.json │ ├── bloop.mp3 │ ├── bloop.sound.json │ ├── but_skunks.game.json │ ├── charge.mp3 │ ├── charge.sound.json │ ├── condo.map.json │ ├── condo.tmx │ ├── credits.png │ ├── credits.sprite.json │ ├── cutscene1.png │ ├── cutscene1.sprite.json │ ├── cutscene2.png │ ├── cutscene2.sprite.json │ ├── destroy.mp3 │ ├── destroy.sound.json │ ├── explode.mp3 │ ├── explode.sound.json │ ├── globals.pyxl │ ├── human.png │ ├── human.sprite.json │ ├── label128.png │ ├── label64.png │ ├── lighting.map.json │ ├── lighting.tmx │ ├── lighting_tiles.png │ ├── lighting_tiles.sprite.json │ ├── map-tiles.png │ ├── map-tiles.sprite.json │ ├── music.pyxl │ ├── preview.png │ ├── skunk.png │ ├── skunk.sprite.json │ ├── stinkbomb.png │ ├── stinkbomb.sprite.json │ ├── stun_enemy.mp3 │ ├── stun_enemy.sound.json │ ├── stun_player.mp3 │ ├── stun_player.sound.json │ ├── title.png │ └── title.sprite.json ├── doublesdepon │ ├── artsrc │ │ ├── blocks.aseprite │ │ ├── chromeBorders.aseprite │ │ ├── dashboard.aseprite │ │ ├── portraitLayers.animtest.aseprite │ │ ├── portraitLayers.aseprite │ │ ├── portraits.aseprite │ │ ├── pulseBg.aseprite │ │ ├── selectCursors.aseprite │ │ └── standardFont.aseprite │ ├── doublesdepon.game.json │ ├── label128.png │ ├── label64.png │ ├── modes │ │ ├── ControllerOrder.pyxl │ │ ├── GameEnd.pyxl │ │ ├── GameStart.pyxl │ │ ├── MainMenu.pyxl │ │ ├── Play.pyxl │ │ └── SelectMenu.pyxl │ ├── preview.png │ ├── res │ │ ├── blocks.png │ │ ├── blocks.sprite.json │ │ ├── blocksPalette.png │ │ ├── blocksPalette.sprite.json │ │ ├── borders.png │ │ ├── borders.sprite.json │ │ ├── chromeBorders.png │ │ ├── chromeBorders.sprite.json │ │ ├── countInNumbers.png │ │ ├── countInNumbers.sprite.json │ │ ├── cursor.png │ │ ├── cursor.sprite.json │ │ ├── dashboard.png │ │ ├── dashboard.sprite.json │ │ ├── dashboardSolo.png │ │ ├── dashboardSolo.sprite.json │ │ ├── levelThermometer.png │ │ ├── levelThermometer.sprite.json │ │ ├── logo.png │ │ ├── logo.sprite.json │ │ ├── logoWaves.png │ │ ├── logoWaves.sprite.json │ │ ├── menuBackdrop.png │ │ ├── menuBackdrop.sprite.json │ │ ├── portraitLayers.animtest.json │ │ ├── portraitLayers.animtest.png │ │ ├── portraitLayers.png │ │ ├── portraitLayers.sprite.json │ │ ├── pulseBg.png │ │ ├── pulseBg.sprite.json │ │ ├── selectCursors.png │ │ ├── selectCursors.sprite.json │ │ ├── smallLabel-5.font.json │ │ ├── smallLabel-5.png │ │ ├── standardFont.png │ │ ├── standardFont.sprite.json │ │ ├── wallpaper.png │ │ ├── wallpaper.sprite.json │ │ ├── winLose.png │ │ └── winLose.sprite.json │ ├── snd │ │ ├── bubbly.mp3 │ │ ├── bubbly.sound.json │ │ ├── bubblyPanic.mp3 │ │ ├── bubblyPanic.sound.json │ │ ├── creamy.mp3 │ │ ├── creamy.sound.json │ │ ├── creamyPanic.mp3 │ │ ├── creamyPanic.sound.json │ │ ├── cursor.mp3 │ │ ├── cursor.sound.json │ │ ├── drop.mp3 │ │ ├── drop.sound.json │ │ ├── end.mp3 │ │ ├── end.sound.json │ │ ├── match1.mp3 │ │ ├── match1.sound.json │ │ ├── match2.mp3 │ │ ├── match2.sound.json │ │ ├── match3.mp3 │ │ ├── match3.sound.json │ │ ├── match4.mp3 │ │ ├── match4.sound.json │ │ ├── match5.mp3 │ │ ├── match5.sound.json │ │ ├── minty.mp3 │ │ ├── minty.sound.json │ │ ├── mintyPanic.mp3 │ │ ├── mintyPanic.sound.json │ │ ├── plunkyIntro.mp3 │ │ ├── plunkyIntro.sound.json │ │ ├── plunkyMain.mp3 │ │ ├── plunkyMain.sound.json │ │ ├── plunkyPanic.mp3 │ │ ├── plunkyPanic.sound.json │ │ ├── pop1.mp3 │ │ ├── pop1.sound.json │ │ ├── pop10.mp3 │ │ ├── pop10.sound.json │ │ ├── pop11.mp3 │ │ ├── pop11.sound.json │ │ ├── pop12.mp3 │ │ ├── pop12.sound.json │ │ ├── pop13.mp3 │ │ ├── pop13.sound.json │ │ ├── pop14.mp3 │ │ ├── pop14.sound.json │ │ ├── pop15.mp3 │ │ ├── pop15.sound.json │ │ ├── pop2.mp3 │ │ ├── pop2.sound.json │ │ ├── pop3.mp3 │ │ ├── pop3.sound.json │ │ ├── pop4.mp3 │ │ ├── pop4.sound.json │ │ ├── pop5.mp3 │ │ ├── pop5.sound.json │ │ ├── pop6.mp3 │ │ ├── pop6.sound.json │ │ ├── pop7.mp3 │ │ ├── pop7.sound.json │ │ ├── pop8.mp3 │ │ ├── pop8.sound.json │ │ ├── pop9.mp3 │ │ ├── pop9.sound.json │ │ ├── salty.mp3 │ │ ├── salty.sound.json │ │ ├── saltyPanic.mp3 │ │ ├── saltyPanic.sound.json │ │ ├── savory.mp3 │ │ ├── savory.sound.json │ │ ├── savoryPanic.mp3 │ │ ├── savoryPanic.sound.json │ │ ├── swap.mp3 │ │ ├── swap.sound.json │ │ ├── tangy.mp3 │ │ ├── tangy.sound.json │ │ ├── tangyPanic.mp3 │ │ ├── tangyPanic.sound.json │ │ ├── tart.mp3 │ │ ├── tart.sound.json │ │ ├── tartPanic.mp3 │ │ ├── tartPanic.sound.json │ │ └── template.json │ └── src │ │ ├── Block.pyxl │ │ ├── Board.pyxl │ │ ├── Bubble.pyxl │ │ ├── Clock.pyxl │ │ ├── Cursor.pyxl │ │ ├── DashBoard.pyxl │ │ ├── Garbage.pyxl │ │ ├── Globals.pyxl │ │ ├── HiScores.pyxl │ │ ├── Input.pyxl │ │ ├── LevelThermometer.pyxl │ │ ├── LinkedPool.pyxl │ │ ├── MatchesAndGravity.pyxl │ │ ├── Menu.pyxl │ │ ├── Music.pyxl │ │ ├── Sfx.pyxl │ │ └── Text.pyxl ├── drop_bloq │ ├── AnimateMove.pyxl │ ├── GameOver.pyxl │ ├── Instructions.pyxl │ ├── Options.pyxl │ ├── Play.pyxl │ ├── Title.pyxl │ ├── banner_630x500.png │ ├── burst.pyxl │ ├── drop_bloq.debug.json │ ├── drop_bloq.game.json │ ├── drop_bloq.zip │ ├── fall.mp3 │ ├── fall.sound.json │ ├── fast_fall.sound.json │ ├── game.pyxl │ ├── go.mp3 │ ├── go.sound.json │ ├── instructions.mp3 │ ├── instructions.png │ ├── instructions.sound.json │ ├── instructions.sprite.json │ ├── label128.png │ ├── label64.png │ ├── lose.mp3 │ ├── lose.sound.json │ ├── one_player.mp3 │ ├── one_player.sound.json │ ├── options.mp3 │ ├── options.png │ ├── options.sound.json │ ├── options.sprite.json │ ├── p1_go.mp3 │ ├── p1_go.sound.json │ ├── p1_win.mp3 │ ├── p1_win.sound.json │ ├── p2_go.mp3 │ ├── p2_go.sound.json │ ├── p2_win.mp3 │ ├── p2_win.sound.json │ ├── preview.png │ ├── tie.mp3 │ ├── tie.sound.json │ ├── title.mp3 │ ├── title.png │ ├── title.sound.json │ ├── title.sprite.json │ ├── two_player.mp3 │ ├── two_player.sound.json │ ├── win.mp3 │ └── win.sound.json ├── duality │ ├── EndGame.pyxl │ ├── NewGame.pyxl │ ├── Play.pyxl │ ├── ShowWinner.pyxl │ ├── Title.pyxl │ ├── dual.png │ ├── dual.sprite.json │ ├── duality.debug.json │ ├── duality.game.json │ ├── game.pyxl │ ├── hex-12x14.png │ ├── hex-12x14.sprite.json │ ├── label128.png │ ├── label64.png │ ├── logo.png │ ├── logo.sprite.json │ ├── mask.png │ ├── mask.sprite.json │ ├── preview.png │ ├── spaced-suchet-12.font.json │ ├── ty.png │ └── ty.sprite.json ├── find_word │ ├── .gitignore │ ├── AvatarEditor.pyxl │ ├── ChooseBoon.pyxl │ ├── DisplayStats.pyxl │ ├── EarnXP.pyxl │ ├── Freestyle.pyxl │ ├── GatherGlobalResults.pyxl │ ├── GenerateBoard.pyxl │ ├── Intermission.pyxl │ ├── Play.pyxl │ ├── Rotate.pyxl │ ├── SoloSummary.pyxl │ ├── Title.pyxl │ ├── WaitingRoom.pyxl │ ├── ability.csv │ ├── ability.pyxl │ ├── ability_icon.png │ ├── ability_icon.sprite.json │ ├── aux_button.png │ ├── aux_button.sprite.json │ ├── avatar.pyxl │ ├── board.pyxl │ ├── boo.csv │ ├── bot.csv │ ├── bot.pyxl │ ├── caf-too-hard.sound.json │ ├── check.png │ ├── check.sprite.json │ ├── competitor.pyxl │ ├── dictionary.pyxl │ ├── faq.md.html │ ├── find_word.game.json │ ├── free.png │ ├── free.sprite.json │ ├── game.pyxl │ ├── history.pyxl │ ├── icon.png │ ├── icon.sprite.json │ ├── index.html │ ├── kiwi-long.mp3 │ ├── kiwi-short.mp3 │ ├── label128.png │ ├── label32.png │ ├── label64.png │ ├── logo.png │ ├── logo.sprite.json │ ├── moo-00.mp3 │ ├── moo-00.sound.json │ ├── moo-01.mp3 │ ├── moo-01.sound.json │ ├── moo-03.mp3 │ ├── moo-03.sound.json │ ├── moo.csv │ ├── msp_00.mp3 │ ├── msp_00.sound.json │ ├── mzk-00.sound.json │ ├── mzk-01.sound.json │ ├── network.pyxl │ ├── notify_icon.png │ ├── notify_icon.sprite.json │ ├── notify_lib.pyxl │ ├── npc_message.pyxl │ ├── player.pyxl │ ├── preview.png │ ├── quandary.mp3 │ ├── quandary.sound.json │ ├── slt.csv │ ├── speech-bubble.png │ ├── speech-bubble.sprite.json │ ├── stats.png │ ├── stats.pyxl │ ├── stats.sprite.json │ ├── tile.pyxl │ ├── tutorial_arrow.png │ ├── tutorial_arrow.sprite.json │ ├── util.pyxl │ ├── vil-00.mp3 │ ├── vil-00.sound.json │ └── xp.pyxl ├── firmament │ ├── CrashCarrier.pyxl │ ├── Epilogue.pyxl │ ├── Instructions.pyxl │ ├── Play.pyxl │ ├── Title.pyxl │ ├── background0.png │ ├── background0.sprite.json │ ├── background1.png │ ├── background1.sprite.json │ ├── background2.png │ ├── background2.sprite.json │ ├── bomber.sprite.json │ ├── bot.pyxl │ ├── carrier.png │ ├── carrier.pyxl │ ├── carrier.sprite.json │ ├── carrier_icon.png │ ├── carrier_icon.sprite.json │ ├── defeat.png │ ├── defeat.sprite.json │ ├── defeat_halo.png │ ├── defeat_halo.sprite.json │ ├── emp.pyxl │ ├── entity.pyxl │ ├── fighter.sprite.json │ ├── firmament.game.json │ ├── icon.sprite.json │ ├── label128.png │ ├── label64.png │ ├── make_ship.pyxl │ ├── player.pyxl │ ├── preview.png │ ├── shield.png │ ├── shield.sprite.json │ ├── ship.pyxl │ ├── ship_silhouettes.png │ ├── ship_silhouettes.sprite.json │ ├── ships.png │ ├── small_icon.sprite.json │ ├── space.pyxl │ ├── story.csv │ ├── team.pyxl │ ├── title.png │ ├── title.sprite.json │ ├── torpedo.pyxl │ ├── tractor.pyxl │ ├── tug.sprite.json │ ├── turret.sprite.json │ ├── victory.png │ ├── victory.sprite.json │ ├── victory_halo.png │ └── victory_halo.sprite.json ├── friendly_fishing │ ├── NewHighScore.pyxl │ ├── Play.pyxl │ ├── Title.pyxl │ ├── arrow.png │ ├── arrow.sprite.json │ ├── emotion-25x23.png │ ├── emotion-25x23.sprite.json │ ├── fish.pyxl │ ├── friendly_fishing.game.json │ ├── global.pyxl │ ├── label128.png │ ├── label64.png │ ├── player.pyxl │ └── preview.png ├── gravity │ ├── .gitignore │ ├── Play.pyxl │ ├── Title.pyxl │ ├── bot.pyxl │ ├── entity.pyxl │ ├── gravity.game.json │ ├── itchio-630x500.png │ ├── label128.png │ ├── label64.png │ ├── preview.png │ ├── ship.pyxl │ └── space.pyxl ├── hexflipper │ ├── Credits.pyxl │ ├── GameOver.pyxl │ ├── GameSetup.pyxl │ ├── HowToPlay.pyxl │ ├── Menu.pyxl │ ├── Play.pyxl │ ├── README.md │ ├── arrows-32x32.png │ ├── arrows.sprite.json │ ├── back.mp3 │ ├── back.sound.json │ ├── beats.pyxl │ ├── bgmusic-ending.mp3 │ ├── bgmusic-ending.sound.json │ ├── bgmusic-menu-to-game.mp3 │ ├── bgmusic-menu-to-game.sound.json │ ├── bgmusic-menu.mp3 │ ├── bgmusic-menu.sound.json │ ├── bgmusic.mp3 │ ├── bgmusic.sound.json │ ├── blip-05.mp3 │ ├── blip-05.sound.json │ ├── blip-07.mp3 │ ├── blip-07.sound.json │ ├── blip-12.mp3 │ ├── blip-12.sound.json │ ├── game_board.map.json │ ├── game_board.tmx │ ├── globals.pyxl │ ├── hex-32x32.png │ ├── hex-32x32.png.pyxel │ ├── hex.sprite.json │ ├── hex_grid.pyxl │ ├── hexflipper.game.json │ ├── itch-cover.png │ ├── label128.png │ ├── label64.png │ ├── move.mp3 │ ├── move.sound.json │ ├── music.pyxl │ ├── preview.png │ ├── select.mp3 │ ├── select.sound.json │ ├── title.png │ └── title.sprite.json ├── icetime │ ├── BTN.png │ ├── BTN.sprite.json │ ├── CAL.png │ ├── CAL.sprite.json │ ├── Credits.pyxl │ ├── Faceoff.pyxl │ ├── GameOver.pyxl │ ├── HEW.png │ ├── HEW.sprite.json │ ├── Intermission.pyxl │ ├── MOS.png │ ├── MOS.sprite.json │ ├── Pause.pyxl │ ├── Play.pyxl │ ├── Rules.pyxl │ ├── SAN.png │ ├── SAN.sprite.json │ ├── TUX.png │ ├── TUX.sprite.json │ ├── TeamSelect.pyxl │ ├── Title.pyxl │ ├── ai.pyxl │ ├── background-192x112.sprite.json │ ├── background.png │ ├── bump.mp3 │ ├── bump.sound.json │ ├── chant.mp3 │ ├── chant.sound.json │ ├── chop.mp3 │ ├── chop.sound.json │ ├── common.pyxl │ ├── drop.mp3 │ ├── drop.sound.json │ ├── goal.mp3 │ ├── goal.sound.json │ ├── icetime.game.json │ ├── label-192x112.sprite.json │ ├── label.png │ ├── label128.png │ ├── label64.png │ ├── net-8x15.png │ ├── net-8x15.sprite.json │ ├── pass.mp3 │ ├── pass.sound.json │ ├── physics.pyxl │ ├── player.pyxl │ ├── preview.png │ ├── puck.png │ ├── puck.sprite.json │ ├── referee.png │ ├── referee.sprite.json │ ├── rink-192x112.sprite.json │ ├── rink.png │ ├── shoot.mp3 │ ├── shoot.sound.json │ ├── skate.mp3 │ ├── skate.sound.json │ ├── title-182x93.sprite.json │ ├── title.png │ ├── whistle.mp3 │ ├── whistle.sound.json │ ├── zamboni.png │ └── zamboni.sprite.json ├── minimecha │ ├── 3D.pyxl │ ├── AnimateMove.pyxl │ ├── Config.pyxl │ ├── EndGame.pyxl │ ├── Intro.pyxl │ ├── Play.pyxl │ ├── Title.pyxl │ ├── UpgradeDialog.pyxl │ ├── animate_captain.pyxl │ ├── animate_drop.pyxl │ ├── animate_explosion.pyxl │ ├── animate_probe.pyxl │ ├── animate_reaper.pyxl │ ├── animate_stalker.pyxl │ ├── clouds.png │ ├── clouds.pyxl │ ├── clouds.sprite.json │ ├── debug.pyxl │ ├── explosion.png │ ├── explosion.sprite.json │ ├── flame.png │ ├── flame.sprite.json │ ├── game.pyxl │ ├── gui.pyxl │ ├── itchio-630x500.png │ ├── label128.png │ ├── label64.png │ ├── mechs_blue.png │ ├── mechs_blue.sprite.json │ ├── mechs_red.png │ ├── mechs_red.sprite.json │ ├── mechs_shadow.png │ ├── mechs_shadow.sprite.json │ ├── menu.pyxl │ ├── minimecha.debug.json │ ├── minimecha.game.json │ ├── missile.png │ ├── missile.sprite.json │ ├── mountain.png │ ├── mountain.sprite.json │ ├── moves.txt │ ├── portrait_blue.png │ ├── portrait_blue.sprite.json │ ├── portrait_red.png │ ├── portrait_red.sprite.json │ ├── preview.png │ ├── scenario.pyxl │ ├── scenarios.txt │ ├── select.sound.json │ ├── shock.png │ ├── shock.sprite.json │ ├── sky.png │ ├── sky.sprite.json │ ├── static_eval.pyxl │ ├── terrain.png │ ├── terrain.sprite.json │ ├── terrain_base.png │ ├── terrain_base.sprite.json │ ├── title.png │ ├── title.sprite.json │ └── util.pyxl ├── quadpaddle │ ├── BeatLevel.pyxl │ ├── GameOver.pyxl │ ├── Pause.pyxl │ ├── Play.pyxl │ ├── Title.pyxl │ ├── Win.pyxl │ ├── ball.sprite.json │ ├── box.sprite.json │ ├── corner.sprite.json │ ├── forceshield.png │ ├── label128.png │ ├── label64.png │ ├── levels.map.json │ ├── levels.tmx │ ├── logo.png │ ├── logo.sprite.json │ ├── paddle.sprite.json │ ├── particle.pyxl │ ├── preview.png │ ├── quadpaddle.game.json │ ├── quadpaddle.pyxl │ ├── shield.sprite.json │ ├── sparkle.png │ ├── sparkle.sprite.json │ ├── sprites.png │ ├── words-224x64.png │ └── words-224x64.sprite.json ├── rescue_roguelike │ ├── .gitignore │ ├── Action_Fireball.pyxl │ ├── Action_Heal.pyxl │ ├── Action_Push.pyxl │ ├── Action_common.pyxl │ ├── Action_grenade.pyxl │ ├── Action_gun.pyxl │ ├── Action_melee.pyxl │ ├── Action_mountain.pyxl │ ├── Actions.pyxl │ ├── Actions.yml │ ├── BasicBattle.yml │ ├── BattleDraw.pyxl │ ├── BattleMusic.pyxl │ ├── BattleSystem.pyxl │ ├── BattleVictory.pyxl │ ├── Board.pyxl │ ├── CPUTurn.pyxl │ ├── Colors.yml │ ├── DrawUtil.pyxl │ ├── EvaluateTurnState.pyxl │ ├── GameOver.pyxl │ ├── GameOver.yml │ ├── InputBuffer.pyxl │ ├── MouseTest.pyxl │ ├── ObjectSpecs.yml │ ├── PaletteTest.pyxl │ ├── PlayerTurn.pyxl │ ├── QueryTurnState.pyxl │ ├── Sequences.pyxl │ ├── ShowEnemyAttacks.pyxl │ ├── Start.pyxl │ ├── TestBattle.pyxl │ ├── TestBattle.yml │ ├── TestUnitBattle.yml │ ├── TileSpecs.yml │ ├── TitleScreen.pyxl │ ├── TitleScreen.yml │ ├── Tutorial.yml │ ├── UiUtil.pyxl │ ├── Util.pyxl │ ├── WorldGen.pyxl │ ├── WorldTemplates.yml │ ├── aseprite │ │ ├── ActionIcons.aseprite │ │ ├── ActionIcons.json │ │ ├── ActionIcons.png │ │ ├── ActionIcons.sprite.json │ │ ├── ActionTrajectory.aseprite │ │ ├── ActionTrajectory.json │ │ ├── ActionTrajectory.png │ │ ├── ActionTrajectory.sprite.json │ │ ├── Blythe.aseprite │ │ ├── Blythe.json │ │ ├── Blythe.png │ │ ├── Blythe.sprite.json │ │ ├── Mortimer.aseprite │ │ ├── Mortimer.json │ │ ├── Mortimer.png │ │ ├── Mortimer.sprite.json │ │ ├── Tiles.aseprite │ │ ├── Tiles.json │ │ ├── Tiles.png │ │ ├── Tiles.sprite.json │ │ ├── Villager_Boy.aseprite │ │ ├── Villager_Boy.json │ │ ├── Villager_Boy.png │ │ ├── Villager_Boy.sprite.json │ │ ├── Villager_Lady.aseprite │ │ ├── Villager_Lady.json │ │ ├── Villager_Lady.png │ │ ├── Villager_Lady.sprite.json │ │ ├── Villager_OldMan.aseprite │ │ ├── Villager_OldMan.json │ │ ├── Villager_OldMan.png │ │ ├── Villager_OldMan.sprite.json │ │ ├── dead_unit.aseprite │ │ ├── dead_unit.json │ │ ├── dead_unit.png │ │ └── dead_unit.sprite.json │ ├── label128.png │ ├── label64.png │ ├── preview.png │ ├── ref │ │ ├── palette.png │ │ └── palette.sprite.json │ ├── rescue_roguelike.game.json │ ├── snd │ │ ├── deatch_cue.mp3 │ │ ├── deatch_cue.sound.json │ │ ├── dungeoncore_theme.mp3 │ │ ├── dungeoncore_theme.sound.json │ │ ├── fanfare.mp3 │ │ └── fanfare.sound.json │ ├── sprites │ │ ├── Goblin-Fuselier-32.aseprite │ │ ├── Goblin-Fuselier-32.json │ │ ├── Goblin-Fuselier-32.png │ │ ├── Goblin-Fuselier-32.sprite.json │ │ ├── Goblin-Soldier-32.aseprite │ │ ├── Goblin-Soldier-32.json │ │ ├── Goblin-Soldier-32.png │ │ ├── Goblin-Soldier-32.sprite.json │ │ ├── Occupant-32.aseprite │ │ ├── Occupant-32.json │ │ ├── Occupant-32.png │ │ ├── Occupant-32.sprite.json │ │ ├── Percy-The-Bard-32.aseprite │ │ ├── Percy-The-Bard-32.json │ │ ├── Percy-The-Bard-32.png │ │ ├── Percy-The-Bard-32.sprite.json │ │ ├── bard.png │ │ ├── devil.png │ │ ├── fire.aseprite │ │ ├── fire.json │ │ ├── fire.png │ │ ├── fire.sprite.json │ │ ├── game_over.aseprite │ │ ├── game_over.png │ │ ├── game_over.sprite.json │ │ ├── goblin.png │ │ ├── goblin.sprite.json │ │ ├── jabberwock-light.png │ │ ├── jabberwock.png │ │ ├── jabberwock.sprite.json │ │ ├── occupant.png │ │ ├── occupant.sprite.json │ │ ├── polywampus.png │ │ ├── title.itch.png │ │ ├── title.png │ │ └── title.sprite.json │ ├── todo.edluong.md │ └── todo.stephan.md ├── rps │ ├── Attack.pyxl │ ├── Battle.pyxl │ ├── Eliminate.pyxl │ ├── GameOver.pyxl │ ├── Heal.pyxl │ ├── Instructions.pyxl │ ├── Play.pyxl │ ├── Title.pyxl │ ├── Unchallenged.pyxl │ ├── global.pyxl │ ├── label128.png │ ├── label64.png │ ├── paper-paper.mp3 │ ├── paper-paper.sound.json │ ├── paper-rock.mp3 │ ├── paper-rock.sound.json │ ├── preview.png │ ├── rock-rock.mp3 │ ├── rock-rock.sound.json │ ├── rock-scissors.mp3 │ ├── rock-scissors.sound.json │ ├── rps-112x112.png │ ├── rps-112x112.sprite.json │ ├── rps-32x32.png │ ├── rps-32x32.sprite.json │ ├── rps.game.json │ ├── scissors-paper.mp3 │ ├── scissors-paper.sound.json │ ├── scissors-scissors.mp3 │ ├── scissors-scissors.sound.json │ ├── unchallenged.mp3 │ └── unchallenged.sound.json └── serpitron │ ├── Credits.pyxl │ ├── EndTransition.pyxl │ ├── GameOver.pyxl │ ├── LevelTitle.pyxl │ ├── NewLevel.pyxl │ ├── Pause.pyxl │ ├── Play.pyxl │ ├── SingleGameOver.pyxl │ ├── Title.pyxl │ ├── buildings.png │ ├── cloud.png │ ├── cloud.sprite.json │ ├── controller.png │ ├── controller.sprite.json │ ├── design.md │ ├── globals.pyxl │ ├── graveyard.pyxl │ ├── hats.png │ ├── hats.sprite.json │ ├── label128.png │ ├── label64.png │ ├── powerup.png │ ├── powerup.sprite.json │ ├── preview.png │ ├── pyramid.sprite.json │ ├── rat.sprite.json │ ├── serpitron.game.json │ ├── shotgun.sprite.json │ ├── skyscraper.sprite.json │ ├── snake.png │ ├── snake.sprite.json │ ├── snakeHead.sprite.json │ ├── snowflake.png │ ├── snowflake.sprite.json │ ├── title.png │ └── title.sprite.json ├── index.html ├── package.json ├── quadplay ├── quadplay.vbs ├── scripts ├── cursor_lib.pyxl ├── dice_lib.pyxl ├── mat3x3_lib.pyxl ├── midi_8x8_lib.pyxl ├── particle_lib.pyxl ├── platformer_lib.pyxl └── screen_lib.pyxl ├── sounds ├── attack-00.mp3 ├── attack-00.sound.json ├── attack-01.mp3 ├── attack-01.sound.json ├── blip-00.mp3 ├── blip-00.sound.json ├── blip-01.mp3 ├── blip-01.sound.json ├── blip-02.mp3 ├── blip-02.sound.json ├── blip-03.mp3 ├── blip-03.sound.json ├── blip-04.mp3 ├── blip-04.sound.json ├── blip-05.mp3 ├── blip-05.sound.json ├── blip-06.mp3 ├── blip-06.sound.json ├── blip-07.mp3 ├── blip-07.sound.json ├── blip-08.mp3 ├── blip-08.sound.json ├── blip-09.mp3 ├── blip-09.sound.json ├── blip-10.mp3 ├── blip-10.sound.json ├── blip-11.mp3 ├── blip-11.sound.json ├── blip-12.mp3 ├── blip-12.sound.json ├── blip-13.mp3 ├── blip-13.sound.json ├── blip-14.mp3 ├── blip-14.sound.json ├── blip-15.mp3 ├── blip-15.sound.json ├── blip-16.mp3 ├── blip-16.sound.json ├── blip-17.mp3 ├── blip-17.sound.json ├── coin-00.mp3 ├── coin-00.sound.json ├── coin-01.mp3 ├── coin-01.sound.json ├── coin-02.mp3 ├── coin-02.sound.json ├── coin-03.mp3 ├── coin-03.sound.json ├── coin-04.mp3 ├── coin-04.sound.json ├── coin-05.mp3 ├── coin-05.sound.json ├── coin-06.mp3 ├── coin-06.sound.json ├── coin-07.mp3 ├── coin-07.sound.json ├── coin-08.mp3 ├── coin-08.sound.json ├── coin-09.mp3 ├── coin-09.sound.json ├── drum-00.mp3 ├── drum-00.sound.json ├── drum-01.mp3 ├── drum-01.sound.json ├── drum-02.mp3 ├── drum-02.sound.json ├── drum-03.mp3 ├── drum-03.sound.json ├── drum-04.mp3 ├── drum-04.sound.json ├── drum_01.mp3 ├── engine-00.mp3 ├── engine-00.sound.json ├── engine-01.mp3 ├── engine-01.sound.json ├── explode-00.mp3 ├── explode-00.sound.json ├── explode-01.mp3 ├── explode-01.sound.json ├── explode-02.mp3 ├── explode-02.sound.json ├── explode-03.mp3 ├── explode-03.sound.json ├── explode-04.mp3 ├── explode-04.sound.json ├── explode-05.mp3 ├── explode-05.sound.json ├── explode-06.mp3 ├── explode-06.sound.json ├── explode-07.mp3 ├── explode-07.sound.json ├── explode-08.mp3 ├── explode-08.sound.json ├── explode-09.mp3 ├── explode-09.sound.json ├── explode-10.mp3 ├── explode-10.sound.json ├── explode-11.mp3 ├── explode-11.sound.json ├── explode-12.mp3 ├── explode-12.sound.json ├── good-00.mp3 ├── good-00.sound.json ├── good-01.mp3 ├── good-01.sound.json ├── good-02.mp3 ├── good-02.sound.json ├── good-03.mp3 ├── good-03.sound.json ├── hit-00.mp3 ├── hit-00.sound.json ├── hit-01.mp3 ├── hit-01.sound.json ├── hit-02.mp3 ├── hit-02.sound.json ├── hit-03.mp3 ├── hit-03.sound.json ├── hit-04.mp3 ├── hit-04.sound.json ├── hit-05.mp3 ├── hit-05.sound.json ├── hit-06.mp3 ├── hit-06.sound.json ├── hit-07.mp3 ├── hit-07.sound.json ├── hit-08.mp3 ├── hit-08.sound.json ├── hit-09.mp3 ├── hit-09.sound.json ├── hit-10.mp3 ├── hit-10.sound.json ├── hit-11.mp3 ├── hit-11.sound.json ├── hit-12.mp3 ├── hit-12.sound.json ├── jump-00.mp3 ├── jump-00.sound.json ├── jump-01.mp3 ├── jump-01.sound.json ├── jump-02.mp3 ├── jump-02.sound.json ├── jump-03.mp3 ├── jump-03.sound.json ├── jump-04.mp3 ├── jump-04.sound.json ├── jump-05.mp3 ├── jump-05.sound.json ├── jump-06.mp3 ├── jump-06.sound.json ├── jump-07.mp3 ├── jump-07.sound.json ├── jump-08.mp3 ├── jump-08.sound.json ├── jump-09.mp3 ├── jump-09.sound.json ├── loop-agent.mp3 ├── loop-agent.sound.json ├── loop-alarm.mp3 ├── loop-alarm.sound.json ├── loop-all_you_can_yeet.mp3 ├── loop-all_you_can_yeet.sound.json ├── loop-arcade.mp3 ├── loop-arcade.sound.json ├── loop-beat.mp3 ├── loop-beat.sound.json ├── loop-built-this.mp3 ├── loop-built-this.sound.json ├── loop-castle.mp3 ├── loop-castle.sound.json ├── loop-chilltech.mp3 ├── loop-chilltech.sound.json ├── loop-dark-thriller.mp3 ├── loop-dark-thriller.sound.json ├── loop-departure.mp3 ├── loop-departure.sound.json ├── loop-edm.mp3 ├── loop-edm.sound.json ├── loop-escalator.mp3 ├── loop-escalator.sound.json ├── loop-fight.mp3 ├── loop-fight.sound.json ├── loop-footsteps-indoor.mp3 ├── loop-footsteps-indoor.sound.json ├── loop-footsteps-puddle.mp3 ├── loop-footsteps-puddle.sound.json ├── loop-footsteps-snow.mp3 ├── loop-footsteps-snow.sound.json ├── loop-footsteps-water.mp3 ├── loop-footsteps-water.sound.json ├── loop-footsteps.mp3 ├── loop-footsteps.sound.json ├── loop-forest.mp3 ├── loop-forest.sound.json ├── loop-frantic.mp3 ├── loop-frantic.sound.json ├── loop-get_off_my_planet.mp3 ├── loop-get_off_my_planet.sound.json ├── loop-helicopter.mp3 ├── loop-helicopter.sound.json ├── loop-joy.mp3 ├── loop-joy.sound.json ├── loop-mega.mp3 ├── loop-mega.sound.json ├── loop-metal.mp3 ├── loop-metal.sound.json ├── loop-munster.mp3 ├── loop-munster.sound.json ├── loop-overworld.mp3 ├── loop-overworld.sound.json ├── loop-prometheus.mp3 ├── loop-prometheus.sound.json ├── loop-puzzle.mp3 ├── loop-puzzle.sound.json ├── loop-sanctuary.mp3 ├── loop-sanctuary.sound.json ├── loop-select.mp3 ├── loop-select.sound.json ├── loop-smooth_drops.mp3 ├── loop-smooth_drops.sound.json ├── loop-soar.mp3 ├── loop-soar.sound.json ├── loop-someday_gone.mp3 ├── loop-someday_gone.sound.json ├── loop-space.mp3 ├── loop-space.sound.json ├── loop-spin.mp3 ├── loop-spin.sound.json ├── loop-splash.mp3 ├── loop-splash.sound.json ├── loop-tastic.mp3 ├── loop-tastic.sound.json ├── loop-town.mp3 ├── loop-town.sound.json ├── loop-triumphant.mp3 ├── loop-triumphant.sound.json ├── loop-victory.mp3 ├── loop-victory.sound.json ├── loop-winch.mp3 ├── loop-winch.sound.json ├── loop-wind.mp3 ├── loop-wind.sound.json ├── music-boss.mp3 ├── music-boss.sound.json ├── music-box_jump.mp3 ├── music-box_jump.sound.json ├── music-brawl.mp3 ├── music-brawl.sound.json ├── music-candy.mp3 ├── music-candy.sound.json ├── music-connected.mp3 ├── music-connected.sound.json ├── music-credits.mp3 ├── music-credits.sound.json ├── music-days.mp3 ├── music-days.sound.json ├── music-deep_blue.mp3 ├── music-deep_blue.sound.json ├── music-go.mp3 ├── music-go.sound.json ├── music-modern_bits.mp3 ├── music-modern_bits.sound.json ├── music-moon.mp3 ├── music-moon.sound.json ├── music-opening.mp3 ├── music-opening.sound.json ├── music-out_of_time.mp3 ├── music-out_of_time.sound.json ├── music-penguin_town.mp3 ├── music-penguin_town.sound.json ├── music-penguins_vs_rabbits.mp3 ├── music-penguins_vs_rabbits.sound.json ├── music-penultimate.mp3 ├── music-penultimate.sound.json ├── music-pixel_war_1.mp3 ├── music-pixel_war_1.sound.json ├── music-pixel_war_2.mp3 ├── music-pixel_war_2.sound.json ├── music-princess_quest.mp3 ├── music-princess_quest.sound.json ├── music-puzzle_pieces.mp3 ├── music-puzzle_pieces.sound.json ├── music-rabbit_town.mp3 ├── music-rabbit_town.sound.json ├── music-race.mp3 ├── music-race.sound.json ├── music-royal.mp3 ├── music-royal.sound.json ├── music-rumble_at_the_gates.mp3 ├── music-rumble_at_the_gates.sound.json ├── music-sanctuary.mp3 ├── music-sanctuary.sound.json ├── music-saturday.mp3 ├── music-saturday.sound.json ├── music-save_the_city.mp3 ├── music-save_the_city.sound.json ├── music-sonata.mp3 ├── music-sonata.sound.json ├── music-three_red_hearts.mp3 ├── music-three_red_hearts.sound.json ├── music-vice.mp3 ├── music-vice.sound.json ├── music-viper.mp3 ├── music-viper.sound.json ├── powerup-00.mp3 ├── powerup-00.sound.json ├── powerup-01.mp3 ├── powerup-01.sound.json ├── powerup-02.mp3 ├── powerup-02.sound.json ├── powerup-03.mp3 ├── powerup-03.sound.json ├── powerup-04.mp3 ├── powerup-04.sound.json ├── powerup-05.mp3 ├── powerup-05.sound.json ├── powerup-06.mp3 ├── powerup-06.sound.json ├── powerup-07.mp3 ├── powerup-07.sound.json ├── powerup-08.mp3 ├── powerup-08.sound.json ├── powerup-09.mp3 ├── powerup-09.sound.json ├── powerup-10.mp3 ├── powerup-10.sound.json ├── powerup-11.mp3 ├── powerup-11.sound.json ├── shoot-00.mp3 ├── shoot-00.sound.json ├── shoot-01.mp3 ├── shoot-01.sound.json ├── shoot-02.mp3 ├── shoot-02.sound.json ├── shoot-03.mp3 ├── shoot-03.sound.json ├── shoot-04.mp3 ├── shoot-04.sound.json ├── shoot-05.mp3 ├── shoot-05.sound.json ├── shoot-06.mp3 ├── shoot-06.sound.json ├── shoot-07.mp3 ├── shoot-07.sound.json ├── shoot-08.mp3 ├── shoot-08.sound.json ├── shoot-09.mp3 ├── shoot-09.sound.json ├── shoot-10.mp3 ├── shoot-10.sound.json ├── shoot-11.mp3 ├── shoot-11.sound.json ├── shoot-12.mp3 ├── shoot-12.sound.json ├── shoot-13.mp3 ├── shoot-13.sound.json ├── shoot-14.mp3 ├── shoot-14.sound.json ├── silence.mp3 ├── silence.sound.json ├── sparks-00.mp3 ├── sparks-00.sound.json ├── sparks-01.mp3 ├── sparks-01.sound.json ├── sparks-02.mp3 ├── sparks-02.sound.json ├── sparks-03.mp3 ├── sparks-03.sound.json ├── sparks-04.mp3 ├── sparks-04.sound.json ├── splash-00.mp3 ├── splash-00.sound.json ├── splash-01.mp3 ├── splash-01.sound.json ├── splash-02.mp3 ├── splash-02.sound.json ├── splash-03.mp3 ├── splash-03.sound.json ├── splash-04.mp3 ├── splash-04.sound.json ├── splash-05.mp3 ├── splash-05.sound.json ├── splash-06.mp3 ├── splash-06.sound.json ├── splash-07.mp3 ├── splash-07.sound.json ├── splash-08.mp3 ├── splash-08.sound.json ├── splash-09.mp3 ├── splash-09.sound.json ├── wild-00.mp3 ├── wild-00.sound.json ├── wild-01.mp3 ├── wild-01.sound.json ├── wild-02.mp3 ├── wild-02.sound.json ├── wild-03.mp3 ├── wild-03.sound.json ├── wild-04.mp3 ├── wild-04.sound.json ├── wild-05.mp3 ├── wild-05.sound.json ├── wild-06.mp3 ├── wild-06.sound.json ├── wild-07.mp3 ├── wild-07.sound.json ├── wild-08.mp3 ├── wild-08.sound.json ├── wild-09.mp3 └── wild-09.sound.json ├── sprites ├── beast-soldier-32x32.png ├── beast-soldier-32x32.sprite.json ├── blasphemer-tiles-64x64.png ├── blasphemer-tiles-64x64.sprite.json ├── cards-poker-24x36.png ├── cards-poker-24x36.sprite.json ├── cards-solitaire-24x36.png ├── cards-solitaire-24x36.sprite.json ├── chopper-44x99.png ├── chopper-blades-96x96.sprite.json ├── chopper-body-44x99.sprite.json ├── controllers-32x22.png ├── controllers-32x22.sprite.json ├── controllers-64x44.png ├── controllers-64x44.sprite.json ├── cursor-13x13.png ├── cursor-13x13.sprite.json ├── cursor-9x9.png ├── cursor-9x9.sprite.json ├── cursor.png ├── cursor.sprite.json ├── dawnlike-engineer-16x16.png ├── dawnlike-engineer-16x16.sprite.json ├── dawnlike-generic-16x16.png ├── dawnlike-generic-16x16.sprite.json ├── dawnlike-level-16x16.png ├── dawnlike-level-16x16.sprite.json ├── dawnlike-mage-16x16.png ├── dawnlike-mage-16x16.sprite.json ├── dawnlike-npcs-16x16.png ├── dawnlike-npcs-16x16.sprite.json ├── dawnlike-paladin-16x16.png ├── dawnlike-paladin-16x16.sprite.json ├── dawnlike-rogue-16x16.png ├── dawnlike-rogue-16x16.sprite.json ├── dawnlike-ui-16x16.png ├── dawnlike-ui-16x16.sprite.json ├── dawnlike-ui-8x8.sprite.json ├── dawnlike-warrior-16x16.png ├── dawnlike-warrior-16x16.sprite.json ├── explosion-realistic-128x128.png ├── explosion-realistic-128x128.sprite.json ├── freedoom-tiles-64x64.png ├── freedoom-tiles-64x64.sprite.json ├── kenney-1bit-14x14.png ├── kenney-1bit-14x14.sprite.json ├── kenney-alien-blue-16x32.png ├── kenney-alien-blue-16x32.sprite.json ├── kenney-alien-green-16x32.png ├── kenney-alien-green-16x32.sprite.json ├── kenney-alien-pink-16x32.png ├── kenney-alien-pink-16x32.sprite.json ├── kenney-alien-purple-16x32.png ├── kenney-alien-purple-16x32.sprite.json ├── kenney-alien-red-16x32.png ├── kenney-alien-red-16x32.sprite.json ├── kenney-alien-yellow-16x32.png ├── kenney-alien-yellow-16x32.sprite.json ├── kenney-blocks-16x16.png ├── kenney-blocks-16x16.sprite.json ├── kenney-cartography-64x64.png ├── kenney-cartography-64x64.sprite.json ├── kenney-ui-16x16.png ├── kenney-ui-16x16.sprite.json ├── mc-pixel-perfection-16x16.png ├── mc-pixel-perfection-16x16.sprite.json ├── miniroguelike-8x8.png ├── miniroguelike-8x8.sprite.json ├── ninja-black-32x32.png ├── ninja-black-32x32.sprite.json ├── ninja-blue-32x32.png ├── ninja-blue-32x32.sprite.json ├── ninja-bow-32x32.png ├── ninja-bow-32x32.sprite.json ├── ninja-green-32x32.png ├── ninja-green-32x32.sprite.json ├── ninja-idle-64x64.png ├── ninja-idle-64x64.sprite.json ├── ninja-pink-32x32.png ├── ninja-pink-32x32.sprite.json ├── ninja-purple-32x32.png ├── ninja-purple-32x32.sprite.json ├── ninja-red-32x32.png ├── ninja-red-32x32.sprite.json ├── ninja-sword-32x32.png ├── ninja-sword-32x32.sprite.json ├── ninja-white-32x32.png ├── ninja-white-32x32.sprite.json ├── ninja-yellow-32x32.png ├── ninja-yellow-32x32.sprite.json ├── ortho-city-32x16.png ├── ortho-city-32x16.sprite.json ├── road_tiles_64.png ├── road_tiles_64.sprite.json ├── shapes-32x32.png ├── shapes-32x32.sprite.json ├── space-atmosphere.png ├── space-atmosphere.sprite.json ├── space-moon.png ├── space-moon.sprite.json ├── space-planet.png ├── space-planet.sprite.json ├── space-ring.png ├── space-ring.sprite.json ├── spaceship128.png ├── spaceship128.sprite.json ├── spaceship32.png ├── spaceship32.sprite.json ├── spaceship64.png ├── spaceship64.sprite.json ├── sportscar-32x64.png ├── sportscar-32x64.sprite.json ├── tank-46x85.png ├── tank-body-46x85.sprite.json ├── tank-turret-46x108.sprite.json ├── top-runner-16x25.png ├── top-runner-16x25.sprite.json ├── top-runner-32x50.png └── top-runner-32x50.sprite.json └── tools ├── .gitignore ├── __init__.py ├── add_asset.py ├── export.py ├── font-update.py ├── fontgen.html ├── fontpack.html ├── highlight.js ├── pyxlscript-default.txt └── pyxlscript.js ├── png.py ├── project_linter.py ├── pyxlscript-mode.el ├── quad_utils.py ├── quaddepend.py ├── quadplay-server ├── quadplay-server.cmd ├── quadplay-server.py ├── quantize.html ├── rainbow-mode.el ├── scalepix.html ├── set_license.py ├── sort_json.py ├── sound_json_generator.py ├── sprite_json_generator.py ├── start-invisible.vbs ├── vim-pyxlscript-syntax ├── README.md ├── ftdetect │ ├── nanoscript.vim │ └── pyxlscript.vim ├── indent │ ├── nanoscript.vim │ └── pyxlscript.vim └── syntax │ ├── nanoscript.vim │ └── pyxlscript.vim ├── vscode-pyxlscript.vsix ├── vscode-pyxlscript ├── .vscode │ └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── README.md ├── language-configuration.json ├── package.json ├── snippets │ └── pyxlscript.json ├── syntaxes │ └── pyxlscript.tmLanguage.json └── vsc-extension-quickstart.md ├── windows-install-quadplay.cmd └── workjson.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | *~ 4 | #* 5 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/.nojekyll -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/_config.yml -------------------------------------------------------------------------------- /console/LoadManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/LoadManager.js -------------------------------------------------------------------------------- /console/WorkJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/WorkJSON.js -------------------------------------------------------------------------------- /console/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/ace/ace.js -------------------------------------------------------------------------------- /console/ace/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/ace/mode-html.js -------------------------------------------------------------------------------- /console/ace/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/ace/mode-json.js -------------------------------------------------------------------------------- /console/ace/mode-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/ace/mode-xml.js -------------------------------------------------------------------------------- /console/ace/mode-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/ace/mode-yaml.js -------------------------------------------------------------------------------- /console/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/app.html -------------------------------------------------------------------------------- /console/controller-dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/controller-dpad.png -------------------------------------------------------------------------------- /console/controller-e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/controller-e.png -------------------------------------------------------------------------------- /console/controller-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/controller-f.png -------------------------------------------------------------------------------- /console/controller-p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/controller-p.png -------------------------------------------------------------------------------- /console/controller-q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/controller-q.png -------------------------------------------------------------------------------- /console/controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/controls.html -------------------------------------------------------------------------------- /console/download-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/download-icon.png -------------------------------------------------------------------------------- /console/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/filters.js -------------------------------------------------------------------------------- /console/gamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/gamepad.png -------------------------------------------------------------------------------- /console/games.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/games.json -------------------------------------------------------------------------------- /console/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/gear.png -------------------------------------------------------------------------------- /console/icons/button-p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/button-p.png -------------------------------------------------------------------------------- /console/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/favicon.ico -------------------------------------------------------------------------------- /console/icons/ui-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-debug.png -------------------------------------------------------------------------------- /console/icons/ui-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-edit.png -------------------------------------------------------------------------------- /console/icons/ui-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-find.png -------------------------------------------------------------------------------- /console/icons/ui-ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-ghost.png -------------------------------------------------------------------------------- /console/icons/ui-goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-goto.png -------------------------------------------------------------------------------- /console/icons/ui-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-home.png -------------------------------------------------------------------------------- /console/icons/ui-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-open.png -------------------------------------------------------------------------------- /console/icons/ui-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-pin.png -------------------------------------------------------------------------------- /console/icons/ui-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-redo.png -------------------------------------------------------------------------------- /console/icons/ui-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-test.png -------------------------------------------------------------------------------- /console/icons/ui-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/icons/ui-undo.png -------------------------------------------------------------------------------- /console/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/keyboard.png -------------------------------------------------------------------------------- /console/launcher/_Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/launcher/_Play.pyxl -------------------------------------------------------------------------------- /console/launcher/boop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/launcher/boop.mp3 -------------------------------------------------------------------------------- /console/lib/dagre.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/dagre.min.js -------------------------------------------------------------------------------- /console/lib/decomp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/decomp.min.js -------------------------------------------------------------------------------- /console/lib/gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/gif.js -------------------------------------------------------------------------------- /console/lib/gif.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/gif.worker.js -------------------------------------------------------------------------------- /console/lib/js-yaml.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/js-yaml.min.js -------------------------------------------------------------------------------- /console/lib/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/jszip.min.js -------------------------------------------------------------------------------- /console/lib/matter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/matter.min.js -------------------------------------------------------------------------------- /console/lib/peerjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/peerjs.min.js -------------------------------------------------------------------------------- /console/lib/qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/qrcode.min.js -------------------------------------------------------------------------------- /console/lib/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/serialize.js -------------------------------------------------------------------------------- /console/lib/vectorify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/vectorify.js -------------------------------------------------------------------------------- /console/lib/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/lib/versions.txt -------------------------------------------------------------------------------- /console/logo-116x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/logo-116x20.png -------------------------------------------------------------------------------- /console/logo-51x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/logo-51x9.png -------------------------------------------------------------------------------- /console/logo-58x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/logo-58x10.png -------------------------------------------------------------------------------- /console/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/logo.png -------------------------------------------------------------------------------- /console/os/_NewHost.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/os/_NewHost.pyxl -------------------------------------------------------------------------------- /console/os/_OnlineMenu.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/os/_OnlineMenu.pyxl -------------------------------------------------------------------------------- /console/os/_SystemMenu.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/os/_SystemMenu.pyxl -------------------------------------------------------------------------------- /console/os/_ui.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/os/_ui.pyxl -------------------------------------------------------------------------------- /console/os/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/os/dependencies.py -------------------------------------------------------------------------------- /console/os/logo.sprite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/os/logo.sprite.json -------------------------------------------------------------------------------- /console/os/opaque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/os/opaque.png -------------------------------------------------------------------------------- /console/os/startup-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/os/startup-logo.png -------------------------------------------------------------------------------- /console/quadplay-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay-browser.js -------------------------------------------------------------------------------- /console/quadplay-conduit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay-conduit.js -------------------------------------------------------------------------------- /console/quadplay-font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay-font.js -------------------------------------------------------------------------------- /console/quadplay-ide-vcs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay-ide-vcs.js -------------------------------------------------------------------------------- /console/quadplay-ide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay-ide.js -------------------------------------------------------------------------------- /console/quadplay-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay-load.js -------------------------------------------------------------------------------- /console/quadplay-midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay-midi.js -------------------------------------------------------------------------------- /console/quadplay-network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay-network.js -------------------------------------------------------------------------------- /console/quadplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay.css -------------------------------------------------------------------------------- /console/quadplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay.html -------------------------------------------------------------------------------- /console/quadplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/quadplay.js -------------------------------------------------------------------------------- /console/sound-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/sound-icon.png -------------------------------------------------------------------------------- /console/startup-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/startup-logo.png -------------------------------------------------------------------------------- /console/templates/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/templates/design.md -------------------------------------------------------------------------------- /console/templates/empty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /console/templates/empty.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /console/templates/sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/templates/sound.mp3 -------------------------------------------------------------------------------- /console/templates/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/templates/todo.html -------------------------------------------------------------------------------- /console/templates/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/templates/todo.md -------------------------------------------------------------------------------- /console/templates/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/templates/todo.txt -------------------------------------------------------------------------------- /console/version.js: -------------------------------------------------------------------------------- 1 | const version = '2025.10.05.03'; -------------------------------------------------------------------------------- /console/wraps/carbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/wraps/carbon.png -------------------------------------------------------------------------------- /console/wraps/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/wraps/dots.png -------------------------------------------------------------------------------- /console/wraps/oak.jog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/wraps/oak.jog -------------------------------------------------------------------------------- /console/wraps/oak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/wraps/oak.jpg -------------------------------------------------------------------------------- /console/wraps/stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/wraps/stripes.png -------------------------------------------------------------------------------- /console/xbox_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/console/xbox_controller.png -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | -------------------------------------------------------------------------------- /data/english_all.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/data/english_all.csv.zip -------------------------------------------------------------------------------- /data/english_common.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/data/english_common.csv.zip -------------------------------------------------------------------------------- /doc/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/OFL.txt -------------------------------------------------------------------------------- /doc/Roboto-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/Roboto-License.txt -------------------------------------------------------------------------------- /doc/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/Roboto-Light.ttf -------------------------------------------------------------------------------- /doc/adblock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/adblock.html -------------------------------------------------------------------------------- /doc/add-non-steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/add-non-steam.png -------------------------------------------------------------------------------- /doc/api.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/api.md.html -------------------------------------------------------------------------------- /doc/arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/arcade.jpg -------------------------------------------------------------------------------- /doc/assets.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/assets.md.html -------------------------------------------------------------------------------- /doc/changelog.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/changelog.md.html -------------------------------------------------------------------------------- /doc/desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/desktop.jpg -------------------------------------------------------------------------------- /doc/dualshock4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/dualshock4.jpg -------------------------------------------------------------------------------- /doc/emulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/emulator.png -------------------------------------------------------------------------------- /doc/external-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/external-editor.png -------------------------------------------------------------------------------- /doc/font-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/font-layout.png -------------------------------------------------------------------------------- /doc/genesis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/genesis.jpg -------------------------------------------------------------------------------- /doc/github-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/github-example.txt -------------------------------------------------------------------------------- /doc/gpd-win.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/gpd-win.jpg -------------------------------------------------------------------------------- /doc/gpd-win3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/gpd-win3.jpg -------------------------------------------------------------------------------- /doc/host-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/host-tab.png -------------------------------------------------------------------------------- /doc/ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/ide.png -------------------------------------------------------------------------------- /doc/itch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/itch.png -------------------------------------------------------------------------------- /doc/joy-con.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/joy-con.jpg -------------------------------------------------------------------------------- /doc/laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/laptop.jpg -------------------------------------------------------------------------------- /doc/launch-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/launch-chrome.png -------------------------------------------------------------------------------- /doc/lib.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/lib.md.html -------------------------------------------------------------------------------- /doc/m30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/m30.jpg -------------------------------------------------------------------------------- /doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/manual.css -------------------------------------------------------------------------------- /doc/manual.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/manual.md.html -------------------------------------------------------------------------------- /doc/markdeep.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/markdeep.min.js -------------------------------------------------------------------------------- /doc/mobile-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/mobile-tab.png -------------------------------------------------------------------------------- /doc/modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/modes.png -------------------------------------------------------------------------------- /doc/nano-arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/nano-arcade.jpg -------------------------------------------------------------------------------- /doc/new-map-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/new-map-dialog.png -------------------------------------------------------------------------------- /doc/phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/phone.jpg -------------------------------------------------------------------------------- /doc/postgoodism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/postgoodism.jpg -------------------------------------------------------------------------------- /doc/pyxlscript-doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/pyxlscript-doc.js -------------------------------------------------------------------------------- /doc/quad-arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/quad-arcade.jpg -------------------------------------------------------------------------------- /doc/quadplay-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/quadplay-palette.png -------------------------------------------------------------------------------- /doc/right-arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/right-arcade.jpg -------------------------------------------------------------------------------- /doc/rpi-arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/rpi-arcade.jpg -------------------------------------------------------------------------------- /doc/slate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/slate.css -------------------------------------------------------------------------------- /doc/sn30-pro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/sn30-pro.jpg -------------------------------------------------------------------------------- /doc/sn30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/sn30.jpg -------------------------------------------------------------------------------- /doc/steamdeck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/steamdeck.jpg -------------------------------------------------------------------------------- /doc/switch-pro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/switch-pro.jpg -------------------------------------------------------------------------------- /doc/symmetric-arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/symmetric-arcade.jpg -------------------------------------------------------------------------------- /doc/text-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/text-style.png -------------------------------------------------------------------------------- /doc/text-tricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/text-tricks.png -------------------------------------------------------------------------------- /doc/thrustmaster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/thrustmaster.jpg -------------------------------------------------------------------------------- /doc/tiled-new-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/tiled-new-map.png -------------------------------------------------------------------------------- /doc/xarcade-arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/xarcade-arcade.jpg -------------------------------------------------------------------------------- /doc/xarcade-dual.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/xarcade-dual.jpg -------------------------------------------------------------------------------- /doc/xarcade-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/xarcade-keyboard.png -------------------------------------------------------------------------------- /doc/xarcade-mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/xarcade-mapping.png -------------------------------------------------------------------------------- /doc/xbox360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/xbox360.jpg -------------------------------------------------------------------------------- /doc/xboxone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/xboxone.jpg -------------------------------------------------------------------------------- /doc/zero2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/doc/zero2.jpg -------------------------------------------------------------------------------- /examples/boids/Boids.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/boids/Boids.pyxl -------------------------------------------------------------------------------- /examples/boids/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/boids/label128.png -------------------------------------------------------------------------------- /examples/boids/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/boids/label64.png -------------------------------------------------------------------------------- /examples/cards/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/cards/.gitignore -------------------------------------------------------------------------------- /examples/cards/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/cards/Play.pyxl -------------------------------------------------------------------------------- /examples/cards/card.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/cards/card.pyxl -------------------------------------------------------------------------------- /examples/cards/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/cards/label128.png -------------------------------------------------------------------------------- /examples/cards/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/cards/label64.png -------------------------------------------------------------------------------- /examples/clouds/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/clouds/Play.pyxl -------------------------------------------------------------------------------- /examples/clouds/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/clouds/label64.png -------------------------------------------------------------------------------- /examples/clouds/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/clouds/palette.png -------------------------------------------------------------------------------- /examples/dark_drive/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /examples/dice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/dice/.gitignore -------------------------------------------------------------------------------- /examples/dice/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/dice/Play.pyxl -------------------------------------------------------------------------------- /examples/dice/Spin.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/dice/Spin.pyxl -------------------------------------------------------------------------------- /examples/dice/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/dice/dragon.png -------------------------------------------------------------------------------- /examples/dice/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/dice/icon.png -------------------------------------------------------------------------------- /examples/dice/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/dice/label128.png -------------------------------------------------------------------------------- /examples/dice/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/dice/label64.png -------------------------------------------------------------------------------- /examples/dice/pip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/dice/pip.png -------------------------------------------------------------------------------- /examples/entity/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/entity/Play.pyxl -------------------------------------------------------------------------------- /examples/entity/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/entity/label64.png -------------------------------------------------------------------------------- /examples/entity/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/entity/text.png -------------------------------------------------------------------------------- /examples/entity/text.sprite.json: -------------------------------------------------------------------------------- 1 | { 2 | url: "text.png" 3 | } 4 | -------------------------------------------------------------------------------- /examples/fluid/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/fluid/Play.pyxl -------------------------------------------------------------------------------- /examples/fluid/grid.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/fluid/grid.pyxl -------------------------------------------------------------------------------- /examples/fluid/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/fluid/label128.png -------------------------------------------------------------------------------- /examples/fluid/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/fluid/label64.png -------------------------------------------------------------------------------- /examples/fluid/util.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/fluid/util.pyxl -------------------------------------------------------------------------------- /examples/gridmove/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/gridmove/Play.pyxl -------------------------------------------------------------------------------- /examples/gridmove/map01.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/gridmove/map01.tmx -------------------------------------------------------------------------------- /examples/gridmove/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/gridmove/tank.png -------------------------------------------------------------------------------- /examples/gui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/gui/.gitignore -------------------------------------------------------------------------------- /examples/gui/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/gui/Play.pyxl -------------------------------------------------------------------------------- /examples/gui/gui.game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/gui/gui.game.json -------------------------------------------------------------------------------- /examples/gui/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/gui/label128.png -------------------------------------------------------------------------------- /examples/gui/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/gui/label64.png -------------------------------------------------------------------------------- /examples/hex/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/hex/Play.pyxl -------------------------------------------------------------------------------- /examples/hex/hex.game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/hex/hex.game.json -------------------------------------------------------------------------------- /examples/hex/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/hex/label128.png -------------------------------------------------------------------------------- /examples/hex/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/hex/label64.png -------------------------------------------------------------------------------- /examples/input/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/input/Play.pyxl -------------------------------------------------------------------------------- /examples/input/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/input/label128.png -------------------------------------------------------------------------------- /examples/input/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/input/label64.png -------------------------------------------------------------------------------- /examples/islands/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/islands/Play.pyxl -------------------------------------------------------------------------------- /examples/islands/ball.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/islands/ball.pyxl -------------------------------------------------------------------------------- /examples/islands/boat.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/islands/boat.pyxl -------------------------------------------------------------------------------- /examples/islands/water.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/islands/water.pyxl -------------------------------------------------------------------------------- /examples/kart/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/kart/Play.pyxl -------------------------------------------------------------------------------- /examples/kart/car-80x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/kart/car-80x35.png -------------------------------------------------------------------------------- /examples/kart/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/kart/label128.png -------------------------------------------------------------------------------- /examples/kart/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/kart/label64.png -------------------------------------------------------------------------------- /examples/kart/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/kart/mountains.png -------------------------------------------------------------------------------- /examples/kart/world.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/kart/world.tmx -------------------------------------------------------------------------------- /examples/maze/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/maze/Play.pyxl -------------------------------------------------------------------------------- /examples/maze/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/maze/label128.png -------------------------------------------------------------------------------- /examples/maze/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/maze/label64.png -------------------------------------------------------------------------------- /examples/maze/map.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/maze/map.map.json -------------------------------------------------------------------------------- /examples/maze/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/maze/map.tmx -------------------------------------------------------------------------------- /examples/midi_8x8/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/midi_8x8/Play.pyxl -------------------------------------------------------------------------------- /examples/midi_8x8/demo.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/midi_8x8/demo.pyxl -------------------------------------------------------------------------------- /examples/midi_8x8/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/midi_8x8/title.png -------------------------------------------------------------------------------- /examples/physics/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/physics/Play.pyxl -------------------------------------------------------------------------------- /examples/piano/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/piano/Play.pyxl -------------------------------------------------------------------------------- /examples/piano/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/piano/label128.png -------------------------------------------------------------------------------- /examples/piano/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/piano/label64.png -------------------------------------------------------------------------------- /examples/piano/synth.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/piano/synth.mp3 -------------------------------------------------------------------------------- /examples/robot/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/robot/Play.pyxl -------------------------------------------------------------------------------- /examples/robot/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/robot/gradient.png -------------------------------------------------------------------------------- /examples/robot/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/robot/label128.png -------------------------------------------------------------------------------- /examples/robot/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/robot/label64.png -------------------------------------------------------------------------------- /examples/rpg/Credits.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/Credits.pyxl -------------------------------------------------------------------------------- /examples/rpg/GameOver.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/GameOver.pyxl -------------------------------------------------------------------------------- /examples/rpg/Inventory.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/Inventory.pyxl -------------------------------------------------------------------------------- /examples/rpg/Pause.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/Pause.pyxl -------------------------------------------------------------------------------- /examples/rpg/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/Play.pyxl -------------------------------------------------------------------------------- /examples/rpg/Shop.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/Shop.pyxl -------------------------------------------------------------------------------- /examples/rpg/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/Title.pyxl -------------------------------------------------------------------------------- /examples/rpg/Win.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/Win.pyxl -------------------------------------------------------------------------------- /examples/rpg/castle.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/castle.tmx -------------------------------------------------------------------------------- /examples/rpg/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/label128.png -------------------------------------------------------------------------------- /examples/rpg/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/label64.png -------------------------------------------------------------------------------- /examples/rpg/rpg.game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/rpg.game.json -------------------------------------------------------------------------------- /examples/rpg/rpg.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/rpg.pyxl -------------------------------------------------------------------------------- /examples/rpg/world.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/world.map.json -------------------------------------------------------------------------------- /examples/rpg/world.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/rpg/world.tmx -------------------------------------------------------------------------------- /examples/sproing/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/sproing/Play.pyxl -------------------------------------------------------------------------------- /examples/starter/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/starter/Play.pyxl -------------------------------------------------------------------------------- /examples/starter/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/starter/TODO.md -------------------------------------------------------------------------------- /examples/text/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/text/Play.pyxl -------------------------------------------------------------------------------- /examples/text/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/text/label128.png -------------------------------------------------------------------------------- /examples/text/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/text/label64.png -------------------------------------------------------------------------------- /examples/touch/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/touch/Play.pyxl -------------------------------------------------------------------------------- /examples/touch/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/touch/label128.png -------------------------------------------------------------------------------- /examples/touch/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/touch/label64.png -------------------------------------------------------------------------------- /examples/vehicles/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/vehicles/Play.pyxl -------------------------------------------------------------------------------- /examples/vehicles/world.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/vehicles/world.tmx -------------------------------------------------------------------------------- /examples/zcar/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zcar/Play.pyxl -------------------------------------------------------------------------------- /examples/zcar/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zcar/label128.png -------------------------------------------------------------------------------- /examples/zcar/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zcar/label64.png -------------------------------------------------------------------------------- /examples/zcar/quad-car.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zcar/quad-car.pyxl -------------------------------------------------------------------------------- /examples/zcar/scanlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zcar/scanlines.png -------------------------------------------------------------------------------- /examples/zcar/vignette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zcar/vignette.png -------------------------------------------------------------------------------- /examples/zoom/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zoom/Play.pyxl -------------------------------------------------------------------------------- /examples/zoom/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zoom/label128.png -------------------------------------------------------------------------------- /examples/zoom/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zoom/label64.png -------------------------------------------------------------------------------- /examples/zoom2D/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zoom2D/Play.pyxl -------------------------------------------------------------------------------- /examples/zoom2D/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/examples/zoom2D/label64.png -------------------------------------------------------------------------------- /fonts/blackletter-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/blackletter-14.png -------------------------------------------------------------------------------- /fonts/bogart-9.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/bogart-9.font.json -------------------------------------------------------------------------------- /fonts/bogart-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/bogart-9.png -------------------------------------------------------------------------------- /fonts/broderick-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/broderick-14.png -------------------------------------------------------------------------------- /fonts/broderick-7.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/broderick-7.font.json -------------------------------------------------------------------------------- /fonts/broderick-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/broderick-7.png -------------------------------------------------------------------------------- /fonts/cga-7.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/cga-7.font.json -------------------------------------------------------------------------------- /fonts/cga-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/cga-7.png -------------------------------------------------------------------------------- /fonts/ching-9.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/ching-9.font.json -------------------------------------------------------------------------------- /fonts/ching-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/ching-9.png -------------------------------------------------------------------------------- /fonts/connelly-7.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/connelly-7.font.json -------------------------------------------------------------------------------- /fonts/connelly-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/connelly-7.png -------------------------------------------------------------------------------- /fonts/cpc-14.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/cpc-14.font.json -------------------------------------------------------------------------------- /fonts/cpc-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/cpc-14.png -------------------------------------------------------------------------------- /fonts/cruise-14.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/cruise-14.font.json -------------------------------------------------------------------------------- /fonts/cruise-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/cruise-14.png -------------------------------------------------------------------------------- /fonts/cruise-7.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/cruise-7.font.json -------------------------------------------------------------------------------- /fonts/cruise-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/cruise-7.png -------------------------------------------------------------------------------- /fonts/deja-15.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-15.font.json -------------------------------------------------------------------------------- /fonts/deja-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-15.png -------------------------------------------------------------------------------- /fonts/deja-3.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-3.font.json -------------------------------------------------------------------------------- /fonts/deja-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-3.png -------------------------------------------------------------------------------- /fonts/deja-4.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-4.font.json -------------------------------------------------------------------------------- /fonts/deja-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-4.png -------------------------------------------------------------------------------- /fonts/deja-5.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-5.font.json -------------------------------------------------------------------------------- /fonts/deja-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-5.png -------------------------------------------------------------------------------- /fonts/deja-6.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-6.font.json -------------------------------------------------------------------------------- /fonts/deja-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-6.png -------------------------------------------------------------------------------- /fonts/deja-7.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-7.font.json -------------------------------------------------------------------------------- /fonts/deja-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-7.png -------------------------------------------------------------------------------- /fonts/deja-8.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-8.font.json -------------------------------------------------------------------------------- /fonts/deja-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-8.png -------------------------------------------------------------------------------- /fonts/deja-9.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-9.font.json -------------------------------------------------------------------------------- /fonts/deja-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-9.png -------------------------------------------------------------------------------- /fonts/deja-bold-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-bold-15.png -------------------------------------------------------------------------------- /fonts/deja-mono-8.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/deja-mono-8.font.json -------------------------------------------------------------------------------- /fonts/federation-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/federation-11.png -------------------------------------------------------------------------------- /fonts/fool-9.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/fool-9.font.json -------------------------------------------------------------------------------- /fonts/fool-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/fool-9.png -------------------------------------------------------------------------------- /fonts/good-neighbors-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/good-neighbors-9.png -------------------------------------------------------------------------------- /fonts/hauer-12.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/hauer-12.font.json -------------------------------------------------------------------------------- /fonts/hauer-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/hauer-12.png -------------------------------------------------------------------------------- /fonts/hauer-6.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/hauer-6.font.json -------------------------------------------------------------------------------- /fonts/hauer-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/hauer-6.png -------------------------------------------------------------------------------- /fonts/ivanhoe-12.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/ivanhoe-12.font.json -------------------------------------------------------------------------------- /fonts/ivanhoe-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/ivanhoe-12.png -------------------------------------------------------------------------------- /fonts/ivanhoe-bold-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/ivanhoe-bold-12.png -------------------------------------------------------------------------------- /fonts/nano-3.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/nano-3.font.json -------------------------------------------------------------------------------- /fonts/nano-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/nano-3.png -------------------------------------------------------------------------------- /fonts/nano-4.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/nano-4.font.json -------------------------------------------------------------------------------- /fonts/nano-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/nano-4.png -------------------------------------------------------------------------------- /fonts/nano-5.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/nano-5.font.json -------------------------------------------------------------------------------- /fonts/nano-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/nano-5.png -------------------------------------------------------------------------------- /fonts/nanob-3.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/nanob-3.font.json -------------------------------------------------------------------------------- /fonts/nanob-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/nanob-3.png -------------------------------------------------------------------------------- /fonts/novarese-10.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/novarese-10.font.json -------------------------------------------------------------------------------- /fonts/novarese-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/novarese-10.png -------------------------------------------------------------------------------- /fonts/novarese-20.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/novarese-20.font.json -------------------------------------------------------------------------------- /fonts/novarese-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/novarese-20.png -------------------------------------------------------------------------------- /fonts/novarese-7.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/novarese-7.font.json -------------------------------------------------------------------------------- /fonts/novarese-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/novarese-7.png -------------------------------------------------------------------------------- /fonts/novarese-bold-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/novarese-bold-10.png -------------------------------------------------------------------------------- /fonts/novarese-bold-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/novarese-bold-20.png -------------------------------------------------------------------------------- /fonts/novarese-narrow-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/novarese-narrow-7.png -------------------------------------------------------------------------------- /fonts/octant-17.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/octant-17.font.json -------------------------------------------------------------------------------- /fonts/octant-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/octant-17.png -------------------------------------------------------------------------------- /fonts/pryce-7.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/pryce-7.font.json -------------------------------------------------------------------------------- /fonts/pryce-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/pryce-7.png -------------------------------------------------------------------------------- /fonts/robot-18.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/robot-18.font.json -------------------------------------------------------------------------------- /fonts/robot-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/robot-18.png -------------------------------------------------------------------------------- /fonts/robot-9.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/robot-9.font.json -------------------------------------------------------------------------------- /fonts/robot-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/robot-9.png -------------------------------------------------------------------------------- /fonts/roman-8.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/roman-8.font.json -------------------------------------------------------------------------------- /fonts/roman-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/roman-8.png -------------------------------------------------------------------------------- /fonts/runes-9.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/runes-9.font.json -------------------------------------------------------------------------------- /fonts/runes-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/runes-9.png -------------------------------------------------------------------------------- /fonts/scoreboard-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/scoreboard-5.png -------------------------------------------------------------------------------- /fonts/scoreboard-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/scoreboard-6.png -------------------------------------------------------------------------------- /fonts/scoreboard-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/scoreboard-7.png -------------------------------------------------------------------------------- /fonts/stencil-9.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/stencil-9.font.json -------------------------------------------------------------------------------- /fonts/stencil-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/stencil-9.png -------------------------------------------------------------------------------- /fonts/suchet-12.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/suchet-12.font.json -------------------------------------------------------------------------------- /fonts/suchet-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/suchet-12.png -------------------------------------------------------------------------------- /fonts/suchet-9.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/suchet-9.font.json -------------------------------------------------------------------------------- /fonts/suchet-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/suchet-9.png -------------------------------------------------------------------------------- /fonts/thompson-8.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/thompson-8.font.json -------------------------------------------------------------------------------- /fonts/thompson-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/thompson-8.png -------------------------------------------------------------------------------- /fonts/weaver-10.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/weaver-10.font.json -------------------------------------------------------------------------------- /fonts/weaver-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/weaver-10.png -------------------------------------------------------------------------------- /fonts/weaver-5.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/weaver-5.font.json -------------------------------------------------------------------------------- /fonts/weaver-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/weaver-5.png -------------------------------------------------------------------------------- /fonts/weaver-7.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/weaver-7.font.json -------------------------------------------------------------------------------- /fonts/weaver-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/weaver-7.png -------------------------------------------------------------------------------- /fonts/wright-8.font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/wright-8.font.json -------------------------------------------------------------------------------- /fonts/wright-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/fonts/wright-8.png -------------------------------------------------------------------------------- /games/across_the_lake/.gitignore: -------------------------------------------------------------------------------- 1 | across_the_lake.*.zip 2 | -------------------------------------------------------------------------------- /games/across_the_lake/bgm.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "music/skippingOnce_tk2.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/across_the_lake/sink.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "music/skippingSfx_sink.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/across_the_lake/splash1.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "music/skippingSfx_tone1.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/across_the_lake/splash2.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "music/skippingSfx_tone2.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/across_the_lake/splash3.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "music/skippingSfx_tone3.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/across_the_lake/splash4.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "music/skippingSfx_tone4.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/across_the_lake/splash5.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "music/skippingSfx_tone5.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/across_the_lake/throw.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "music/skippingSfx_windToss_tk2.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/.gitignore: -------------------------------------------------------------------------------- 1 | *.gif 2 | *.zip 3 | release 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/bomb_throw.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "snd/bomb_throw.wav" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/chippy3_wip03_with_anvil.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "chippy3_wip01.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/die.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "die_02.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/hit_thing.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "snd/hit_thing.wav" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/ouch.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "ouch.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/play.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "chippy3_wip01.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/point_up.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "snd/point_up.wav" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/splode.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "snd/splode.wav" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/summon_land.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "snd/summon_land.wav" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/summon_laser.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "snd/summon_laser.wav" 3 | } 4 | -------------------------------------------------------------------------------- /games/beat_the_gobblins/swipe.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "swipe.mp3" 3 | } 4 | -------------------------------------------------------------------------------- /games/but_skunks/Menu.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/Menu.pyxl -------------------------------------------------------------------------------- /games/but_skunks/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/Play.pyxl -------------------------------------------------------------------------------- /games/but_skunks/attic.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/attic.tmx -------------------------------------------------------------------------------- /games/but_skunks/blip.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/blip.mp3 -------------------------------------------------------------------------------- /games/but_skunks/bloop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/bloop.mp3 -------------------------------------------------------------------------------- /games/but_skunks/charge.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/charge.mp3 -------------------------------------------------------------------------------- /games/but_skunks/condo.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/condo.tmx -------------------------------------------------------------------------------- /games/but_skunks/human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/human.png -------------------------------------------------------------------------------- /games/but_skunks/music.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/music.pyxl -------------------------------------------------------------------------------- /games/but_skunks/skunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/skunk.png -------------------------------------------------------------------------------- /games/but_skunks/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/but_skunks/title.png -------------------------------------------------------------------------------- /games/doublesdepon/snd/bubbly.sound.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "bubbly.mp3" 3 | } -------------------------------------------------------------------------------- /games/doublesdepon/snd/template.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "TEST" 3 | } -------------------------------------------------------------------------------- /games/drop_bloq/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/Play.pyxl -------------------------------------------------------------------------------- /games/drop_bloq/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/Title.pyxl -------------------------------------------------------------------------------- /games/drop_bloq/burst.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/burst.pyxl -------------------------------------------------------------------------------- /games/drop_bloq/fall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/fall.mp3 -------------------------------------------------------------------------------- /games/drop_bloq/game.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/game.pyxl -------------------------------------------------------------------------------- /games/drop_bloq/go.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/go.mp3 -------------------------------------------------------------------------------- /games/drop_bloq/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/label64.png -------------------------------------------------------------------------------- /games/drop_bloq/lose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/lose.mp3 -------------------------------------------------------------------------------- /games/drop_bloq/options.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/options.mp3 -------------------------------------------------------------------------------- /games/drop_bloq/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/options.png -------------------------------------------------------------------------------- /games/drop_bloq/p1_go.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/p1_go.mp3 -------------------------------------------------------------------------------- /games/drop_bloq/p1_win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/p1_win.mp3 -------------------------------------------------------------------------------- /games/drop_bloq/p2_go.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/p2_go.mp3 -------------------------------------------------------------------------------- /games/drop_bloq/p2_win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/p2_win.mp3 -------------------------------------------------------------------------------- /games/drop_bloq/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/preview.png -------------------------------------------------------------------------------- /games/drop_bloq/tie.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/tie.mp3 -------------------------------------------------------------------------------- /games/drop_bloq/title.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/title.mp3 -------------------------------------------------------------------------------- /games/drop_bloq/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/title.png -------------------------------------------------------------------------------- /games/drop_bloq/win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/drop_bloq/win.mp3 -------------------------------------------------------------------------------- /games/duality/EndGame.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/EndGame.pyxl -------------------------------------------------------------------------------- /games/duality/NewGame.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/NewGame.pyxl -------------------------------------------------------------------------------- /games/duality/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/Play.pyxl -------------------------------------------------------------------------------- /games/duality/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/Title.pyxl -------------------------------------------------------------------------------- /games/duality/dual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/dual.png -------------------------------------------------------------------------------- /games/duality/game.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/game.pyxl -------------------------------------------------------------------------------- /games/duality/hex-12x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/hex-12x14.png -------------------------------------------------------------------------------- /games/duality/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/label128.png -------------------------------------------------------------------------------- /games/duality/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/label64.png -------------------------------------------------------------------------------- /games/duality/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/logo.png -------------------------------------------------------------------------------- /games/duality/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/mask.png -------------------------------------------------------------------------------- /games/duality/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/preview.png -------------------------------------------------------------------------------- /games/duality/ty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/duality/ty.png -------------------------------------------------------------------------------- /games/find_word/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/.gitignore -------------------------------------------------------------------------------- /games/find_word/EarnXP.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/EarnXP.pyxl -------------------------------------------------------------------------------- /games/find_word/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/Play.pyxl -------------------------------------------------------------------------------- /games/find_word/Rotate.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/Rotate.pyxl -------------------------------------------------------------------------------- /games/find_word/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/Title.pyxl -------------------------------------------------------------------------------- /games/find_word/ability.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/ability.csv -------------------------------------------------------------------------------- /games/find_word/avatar.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/avatar.pyxl -------------------------------------------------------------------------------- /games/find_word/board.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/board.pyxl -------------------------------------------------------------------------------- /games/find_word/boo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/boo.csv -------------------------------------------------------------------------------- /games/find_word/bot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/bot.csv -------------------------------------------------------------------------------- /games/find_word/bot.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/bot.pyxl -------------------------------------------------------------------------------- /games/find_word/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/check.png -------------------------------------------------------------------------------- /games/find_word/faq.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/faq.md.html -------------------------------------------------------------------------------- /games/find_word/free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/free.png -------------------------------------------------------------------------------- /games/find_word/game.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/game.pyxl -------------------------------------------------------------------------------- /games/find_word/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/icon.png -------------------------------------------------------------------------------- /games/find_word/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/index.html -------------------------------------------------------------------------------- /games/find_word/label32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/label32.png -------------------------------------------------------------------------------- /games/find_word/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/label64.png -------------------------------------------------------------------------------- /games/find_word/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/logo.png -------------------------------------------------------------------------------- /games/find_word/moo-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/moo-00.mp3 -------------------------------------------------------------------------------- /games/find_word/moo-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/moo-01.mp3 -------------------------------------------------------------------------------- /games/find_word/moo-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/moo-03.mp3 -------------------------------------------------------------------------------- /games/find_word/moo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/moo.csv -------------------------------------------------------------------------------- /games/find_word/msp_00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/msp_00.mp3 -------------------------------------------------------------------------------- /games/find_word/player.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/player.pyxl -------------------------------------------------------------------------------- /games/find_word/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/preview.png -------------------------------------------------------------------------------- /games/find_word/slt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/slt.csv -------------------------------------------------------------------------------- /games/find_word/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/stats.png -------------------------------------------------------------------------------- /games/find_word/stats.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/stats.pyxl -------------------------------------------------------------------------------- /games/find_word/tile.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/tile.pyxl -------------------------------------------------------------------------------- /games/find_word/util.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/util.pyxl -------------------------------------------------------------------------------- /games/find_word/vil-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/vil-00.mp3 -------------------------------------------------------------------------------- /games/find_word/xp.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/find_word/xp.pyxl -------------------------------------------------------------------------------- /games/firmament/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/Play.pyxl -------------------------------------------------------------------------------- /games/firmament/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/Title.pyxl -------------------------------------------------------------------------------- /games/firmament/bot.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/bot.pyxl -------------------------------------------------------------------------------- /games/firmament/carrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/carrier.png -------------------------------------------------------------------------------- /games/firmament/defeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/defeat.png -------------------------------------------------------------------------------- /games/firmament/emp.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/emp.pyxl -------------------------------------------------------------------------------- /games/firmament/entity.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/entity.pyxl -------------------------------------------------------------------------------- /games/firmament/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/label64.png -------------------------------------------------------------------------------- /games/firmament/player.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/player.pyxl -------------------------------------------------------------------------------- /games/firmament/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/preview.png -------------------------------------------------------------------------------- /games/firmament/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/shield.png -------------------------------------------------------------------------------- /games/firmament/ship.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/ship.pyxl -------------------------------------------------------------------------------- /games/firmament/ships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/ships.png -------------------------------------------------------------------------------- /games/firmament/space.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/space.pyxl -------------------------------------------------------------------------------- /games/firmament/story.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/story.csv -------------------------------------------------------------------------------- /games/firmament/team.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/team.pyxl -------------------------------------------------------------------------------- /games/firmament/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/title.png -------------------------------------------------------------------------------- /games/firmament/victory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/firmament/victory.png -------------------------------------------------------------------------------- /games/gravity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/gravity/.gitignore -------------------------------------------------------------------------------- /games/gravity/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/gravity/Play.pyxl -------------------------------------------------------------------------------- /games/gravity/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/gravity/Title.pyxl -------------------------------------------------------------------------------- /games/gravity/bot.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/gravity/bot.pyxl -------------------------------------------------------------------------------- /games/gravity/entity.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/gravity/entity.pyxl -------------------------------------------------------------------------------- /games/gravity/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/gravity/label128.png -------------------------------------------------------------------------------- /games/gravity/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/gravity/label64.png -------------------------------------------------------------------------------- /games/gravity/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/gravity/preview.png -------------------------------------------------------------------------------- /games/gravity/ship.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/gravity/ship.pyxl -------------------------------------------------------------------------------- /games/gravity/space.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/gravity/space.pyxl -------------------------------------------------------------------------------- /games/hexflipper/Menu.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/hexflipper/Menu.pyxl -------------------------------------------------------------------------------- /games/hexflipper/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/hexflipper/Play.pyxl -------------------------------------------------------------------------------- /games/hexflipper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/hexflipper/README.md -------------------------------------------------------------------------------- /games/hexflipper/back.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/hexflipper/back.mp3 -------------------------------------------------------------------------------- /games/hexflipper/beats.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/hexflipper/beats.pyxl -------------------------------------------------------------------------------- /games/hexflipper/move.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/hexflipper/move.mp3 -------------------------------------------------------------------------------- /games/hexflipper/music.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/hexflipper/music.pyxl -------------------------------------------------------------------------------- /games/hexflipper/select.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/hexflipper/select.mp3 -------------------------------------------------------------------------------- /games/hexflipper/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/hexflipper/title.png -------------------------------------------------------------------------------- /games/icetime/BTN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/BTN.png -------------------------------------------------------------------------------- /games/icetime/CAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/CAL.png -------------------------------------------------------------------------------- /games/icetime/Credits.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/Credits.pyxl -------------------------------------------------------------------------------- /games/icetime/Faceoff.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/Faceoff.pyxl -------------------------------------------------------------------------------- /games/icetime/GameOver.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/GameOver.pyxl -------------------------------------------------------------------------------- /games/icetime/HEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/HEW.png -------------------------------------------------------------------------------- /games/icetime/MOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/MOS.png -------------------------------------------------------------------------------- /games/icetime/Pause.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/Pause.pyxl -------------------------------------------------------------------------------- /games/icetime/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/Play.pyxl -------------------------------------------------------------------------------- /games/icetime/Rules.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/Rules.pyxl -------------------------------------------------------------------------------- /games/icetime/SAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/SAN.png -------------------------------------------------------------------------------- /games/icetime/TUX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/TUX.png -------------------------------------------------------------------------------- /games/icetime/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/Title.pyxl -------------------------------------------------------------------------------- /games/icetime/ai.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/ai.pyxl -------------------------------------------------------------------------------- /games/icetime/bump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/bump.mp3 -------------------------------------------------------------------------------- /games/icetime/chant.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/chant.mp3 -------------------------------------------------------------------------------- /games/icetime/chop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/chop.mp3 -------------------------------------------------------------------------------- /games/icetime/common.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/common.pyxl -------------------------------------------------------------------------------- /games/icetime/drop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/drop.mp3 -------------------------------------------------------------------------------- /games/icetime/goal.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/goal.mp3 -------------------------------------------------------------------------------- /games/icetime/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/label.png -------------------------------------------------------------------------------- /games/icetime/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/label128.png -------------------------------------------------------------------------------- /games/icetime/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/label64.png -------------------------------------------------------------------------------- /games/icetime/net-8x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/net-8x15.png -------------------------------------------------------------------------------- /games/icetime/pass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/pass.mp3 -------------------------------------------------------------------------------- /games/icetime/physics.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/physics.pyxl -------------------------------------------------------------------------------- /games/icetime/player.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/player.pyxl -------------------------------------------------------------------------------- /games/icetime/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/preview.png -------------------------------------------------------------------------------- /games/icetime/puck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/puck.png -------------------------------------------------------------------------------- /games/icetime/referee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/referee.png -------------------------------------------------------------------------------- /games/icetime/rink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/rink.png -------------------------------------------------------------------------------- /games/icetime/shoot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/shoot.mp3 -------------------------------------------------------------------------------- /games/icetime/skate.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/skate.mp3 -------------------------------------------------------------------------------- /games/icetime/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/title.png -------------------------------------------------------------------------------- /games/icetime/whistle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/whistle.mp3 -------------------------------------------------------------------------------- /games/icetime/zamboni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/icetime/zamboni.png -------------------------------------------------------------------------------- /games/minimecha/3D.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/3D.pyxl -------------------------------------------------------------------------------- /games/minimecha/Config.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/Config.pyxl -------------------------------------------------------------------------------- /games/minimecha/Intro.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/Intro.pyxl -------------------------------------------------------------------------------- /games/minimecha/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/Play.pyxl -------------------------------------------------------------------------------- /games/minimecha/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/Title.pyxl -------------------------------------------------------------------------------- /games/minimecha/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/clouds.png -------------------------------------------------------------------------------- /games/minimecha/clouds.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/clouds.pyxl -------------------------------------------------------------------------------- /games/minimecha/debug.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/debug.pyxl -------------------------------------------------------------------------------- /games/minimecha/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/flame.png -------------------------------------------------------------------------------- /games/minimecha/game.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/game.pyxl -------------------------------------------------------------------------------- /games/minimecha/gui.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/gui.pyxl -------------------------------------------------------------------------------- /games/minimecha/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/label64.png -------------------------------------------------------------------------------- /games/minimecha/menu.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/menu.pyxl -------------------------------------------------------------------------------- /games/minimecha/missile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/missile.png -------------------------------------------------------------------------------- /games/minimecha/moves.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/moves.txt -------------------------------------------------------------------------------- /games/minimecha/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/preview.png -------------------------------------------------------------------------------- /games/minimecha/shock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/shock.png -------------------------------------------------------------------------------- /games/minimecha/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/sky.png -------------------------------------------------------------------------------- /games/minimecha/terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/terrain.png -------------------------------------------------------------------------------- /games/minimecha/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/title.png -------------------------------------------------------------------------------- /games/minimecha/util.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/minimecha/util.pyxl -------------------------------------------------------------------------------- /games/quadpaddle/Pause.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/quadpaddle/Pause.pyxl -------------------------------------------------------------------------------- /games/quadpaddle/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/quadpaddle/Play.pyxl -------------------------------------------------------------------------------- /games/quadpaddle/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/quadpaddle/Title.pyxl -------------------------------------------------------------------------------- /games/quadpaddle/Win.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/quadpaddle/Win.pyxl -------------------------------------------------------------------------------- /games/quadpaddle/levels.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/quadpaddle/levels.tmx -------------------------------------------------------------------------------- /games/quadpaddle/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/quadpaddle/logo.png -------------------------------------------------------------------------------- /games/rps/Attack.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/Attack.pyxl -------------------------------------------------------------------------------- /games/rps/Battle.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/Battle.pyxl -------------------------------------------------------------------------------- /games/rps/Eliminate.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/Eliminate.pyxl -------------------------------------------------------------------------------- /games/rps/GameOver.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/GameOver.pyxl -------------------------------------------------------------------------------- /games/rps/Heal.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/Heal.pyxl -------------------------------------------------------------------------------- /games/rps/Instructions.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/Instructions.pyxl -------------------------------------------------------------------------------- /games/rps/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/Play.pyxl -------------------------------------------------------------------------------- /games/rps/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/Title.pyxl -------------------------------------------------------------------------------- /games/rps/Unchallenged.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/Unchallenged.pyxl -------------------------------------------------------------------------------- /games/rps/global.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/global.pyxl -------------------------------------------------------------------------------- /games/rps/label128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/label128.png -------------------------------------------------------------------------------- /games/rps/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/label64.png -------------------------------------------------------------------------------- /games/rps/paper-paper.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/paper-paper.mp3 -------------------------------------------------------------------------------- /games/rps/paper-rock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/paper-rock.mp3 -------------------------------------------------------------------------------- /games/rps/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/preview.png -------------------------------------------------------------------------------- /games/rps/rock-rock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/rock-rock.mp3 -------------------------------------------------------------------------------- /games/rps/rock-scissors.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/rock-scissors.mp3 -------------------------------------------------------------------------------- /games/rps/rps-112x112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/rps-112x112.png -------------------------------------------------------------------------------- /games/rps/rps-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/rps-32x32.png -------------------------------------------------------------------------------- /games/rps/rps.game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/rps.game.json -------------------------------------------------------------------------------- /games/rps/unchallenged.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/rps/unchallenged.mp3 -------------------------------------------------------------------------------- /games/serpitron/Pause.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/Pause.pyxl -------------------------------------------------------------------------------- /games/serpitron/Play.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/Play.pyxl -------------------------------------------------------------------------------- /games/serpitron/Title.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/Title.pyxl -------------------------------------------------------------------------------- /games/serpitron/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/cloud.png -------------------------------------------------------------------------------- /games/serpitron/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/design.md -------------------------------------------------------------------------------- /games/serpitron/hats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/hats.png -------------------------------------------------------------------------------- /games/serpitron/label64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/label64.png -------------------------------------------------------------------------------- /games/serpitron/powerup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/powerup.png -------------------------------------------------------------------------------- /games/serpitron/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/preview.png -------------------------------------------------------------------------------- /games/serpitron/snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/snake.png -------------------------------------------------------------------------------- /games/serpitron/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/games/serpitron/title.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/package.json -------------------------------------------------------------------------------- /quadplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/quadplay -------------------------------------------------------------------------------- /quadplay.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/quadplay.vbs -------------------------------------------------------------------------------- /scripts/cursor_lib.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/scripts/cursor_lib.pyxl -------------------------------------------------------------------------------- /scripts/dice_lib.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/scripts/dice_lib.pyxl -------------------------------------------------------------------------------- /scripts/mat3x3_lib.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/scripts/mat3x3_lib.pyxl -------------------------------------------------------------------------------- /scripts/midi_8x8_lib.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/scripts/midi_8x8_lib.pyxl -------------------------------------------------------------------------------- /scripts/particle_lib.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/scripts/particle_lib.pyxl -------------------------------------------------------------------------------- /scripts/platformer_lib.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/scripts/platformer_lib.pyxl -------------------------------------------------------------------------------- /scripts/screen_lib.pyxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/scripts/screen_lib.pyxl -------------------------------------------------------------------------------- /sounds/attack-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/attack-00.mp3 -------------------------------------------------------------------------------- /sounds/attack-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/attack-00.sound.json -------------------------------------------------------------------------------- /sounds/attack-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/attack-01.mp3 -------------------------------------------------------------------------------- /sounds/attack-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/attack-01.sound.json -------------------------------------------------------------------------------- /sounds/blip-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-00.mp3 -------------------------------------------------------------------------------- /sounds/blip-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-00.sound.json -------------------------------------------------------------------------------- /sounds/blip-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-01.mp3 -------------------------------------------------------------------------------- /sounds/blip-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-01.sound.json -------------------------------------------------------------------------------- /sounds/blip-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-02.mp3 -------------------------------------------------------------------------------- /sounds/blip-02.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-02.sound.json -------------------------------------------------------------------------------- /sounds/blip-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-03.mp3 -------------------------------------------------------------------------------- /sounds/blip-03.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-03.sound.json -------------------------------------------------------------------------------- /sounds/blip-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-04.mp3 -------------------------------------------------------------------------------- /sounds/blip-04.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-04.sound.json -------------------------------------------------------------------------------- /sounds/blip-05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-05.mp3 -------------------------------------------------------------------------------- /sounds/blip-05.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-05.sound.json -------------------------------------------------------------------------------- /sounds/blip-06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-06.mp3 -------------------------------------------------------------------------------- /sounds/blip-06.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-06.sound.json -------------------------------------------------------------------------------- /sounds/blip-07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-07.mp3 -------------------------------------------------------------------------------- /sounds/blip-07.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-07.sound.json -------------------------------------------------------------------------------- /sounds/blip-08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-08.mp3 -------------------------------------------------------------------------------- /sounds/blip-08.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-08.sound.json -------------------------------------------------------------------------------- /sounds/blip-09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-09.mp3 -------------------------------------------------------------------------------- /sounds/blip-09.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-09.sound.json -------------------------------------------------------------------------------- /sounds/blip-10.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-10.mp3 -------------------------------------------------------------------------------- /sounds/blip-10.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-10.sound.json -------------------------------------------------------------------------------- /sounds/blip-11.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-11.mp3 -------------------------------------------------------------------------------- /sounds/blip-11.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-11.sound.json -------------------------------------------------------------------------------- /sounds/blip-12.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-12.mp3 -------------------------------------------------------------------------------- /sounds/blip-12.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-12.sound.json -------------------------------------------------------------------------------- /sounds/blip-13.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-13.mp3 -------------------------------------------------------------------------------- /sounds/blip-13.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-13.sound.json -------------------------------------------------------------------------------- /sounds/blip-14.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-14.mp3 -------------------------------------------------------------------------------- /sounds/blip-14.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-14.sound.json -------------------------------------------------------------------------------- /sounds/blip-15.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-15.mp3 -------------------------------------------------------------------------------- /sounds/blip-15.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-15.sound.json -------------------------------------------------------------------------------- /sounds/blip-16.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-16.mp3 -------------------------------------------------------------------------------- /sounds/blip-16.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-16.sound.json -------------------------------------------------------------------------------- /sounds/blip-17.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-17.mp3 -------------------------------------------------------------------------------- /sounds/blip-17.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/blip-17.sound.json -------------------------------------------------------------------------------- /sounds/coin-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-00.mp3 -------------------------------------------------------------------------------- /sounds/coin-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-00.sound.json -------------------------------------------------------------------------------- /sounds/coin-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-01.mp3 -------------------------------------------------------------------------------- /sounds/coin-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-01.sound.json -------------------------------------------------------------------------------- /sounds/coin-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-02.mp3 -------------------------------------------------------------------------------- /sounds/coin-02.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-02.sound.json -------------------------------------------------------------------------------- /sounds/coin-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-03.mp3 -------------------------------------------------------------------------------- /sounds/coin-03.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-03.sound.json -------------------------------------------------------------------------------- /sounds/coin-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-04.mp3 -------------------------------------------------------------------------------- /sounds/coin-04.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-04.sound.json -------------------------------------------------------------------------------- /sounds/coin-05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-05.mp3 -------------------------------------------------------------------------------- /sounds/coin-05.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-05.sound.json -------------------------------------------------------------------------------- /sounds/coin-06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-06.mp3 -------------------------------------------------------------------------------- /sounds/coin-06.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-06.sound.json -------------------------------------------------------------------------------- /sounds/coin-07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-07.mp3 -------------------------------------------------------------------------------- /sounds/coin-07.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-07.sound.json -------------------------------------------------------------------------------- /sounds/coin-08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-08.mp3 -------------------------------------------------------------------------------- /sounds/coin-08.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-08.sound.json -------------------------------------------------------------------------------- /sounds/coin-09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-09.mp3 -------------------------------------------------------------------------------- /sounds/coin-09.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/coin-09.sound.json -------------------------------------------------------------------------------- /sounds/drum-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum-00.mp3 -------------------------------------------------------------------------------- /sounds/drum-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum-00.sound.json -------------------------------------------------------------------------------- /sounds/drum-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum-01.mp3 -------------------------------------------------------------------------------- /sounds/drum-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum-01.sound.json -------------------------------------------------------------------------------- /sounds/drum-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum-02.mp3 -------------------------------------------------------------------------------- /sounds/drum-02.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum-02.sound.json -------------------------------------------------------------------------------- /sounds/drum-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum-03.mp3 -------------------------------------------------------------------------------- /sounds/drum-03.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum-03.sound.json -------------------------------------------------------------------------------- /sounds/drum-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum-04.mp3 -------------------------------------------------------------------------------- /sounds/drum-04.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum-04.sound.json -------------------------------------------------------------------------------- /sounds/drum_01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/drum_01.mp3 -------------------------------------------------------------------------------- /sounds/engine-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/engine-00.mp3 -------------------------------------------------------------------------------- /sounds/engine-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/engine-00.sound.json -------------------------------------------------------------------------------- /sounds/engine-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/engine-01.mp3 -------------------------------------------------------------------------------- /sounds/engine-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/engine-01.sound.json -------------------------------------------------------------------------------- /sounds/explode-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-00.mp3 -------------------------------------------------------------------------------- /sounds/explode-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-01.mp3 -------------------------------------------------------------------------------- /sounds/explode-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-02.mp3 -------------------------------------------------------------------------------- /sounds/explode-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-03.mp3 -------------------------------------------------------------------------------- /sounds/explode-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-04.mp3 -------------------------------------------------------------------------------- /sounds/explode-05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-05.mp3 -------------------------------------------------------------------------------- /sounds/explode-06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-06.mp3 -------------------------------------------------------------------------------- /sounds/explode-07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-07.mp3 -------------------------------------------------------------------------------- /sounds/explode-08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-08.mp3 -------------------------------------------------------------------------------- /sounds/explode-09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-09.mp3 -------------------------------------------------------------------------------- /sounds/explode-10.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-10.mp3 -------------------------------------------------------------------------------- /sounds/explode-11.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-11.mp3 -------------------------------------------------------------------------------- /sounds/explode-12.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/explode-12.mp3 -------------------------------------------------------------------------------- /sounds/good-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/good-00.mp3 -------------------------------------------------------------------------------- /sounds/good-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/good-00.sound.json -------------------------------------------------------------------------------- /sounds/good-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/good-01.mp3 -------------------------------------------------------------------------------- /sounds/good-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/good-01.sound.json -------------------------------------------------------------------------------- /sounds/good-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/good-02.mp3 -------------------------------------------------------------------------------- /sounds/good-02.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/good-02.sound.json -------------------------------------------------------------------------------- /sounds/good-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/good-03.mp3 -------------------------------------------------------------------------------- /sounds/good-03.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/good-03.sound.json -------------------------------------------------------------------------------- /sounds/hit-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-00.mp3 -------------------------------------------------------------------------------- /sounds/hit-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-00.sound.json -------------------------------------------------------------------------------- /sounds/hit-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-01.mp3 -------------------------------------------------------------------------------- /sounds/hit-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-01.sound.json -------------------------------------------------------------------------------- /sounds/hit-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-02.mp3 -------------------------------------------------------------------------------- /sounds/hit-02.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-02.sound.json -------------------------------------------------------------------------------- /sounds/hit-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-03.mp3 -------------------------------------------------------------------------------- /sounds/hit-03.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-03.sound.json -------------------------------------------------------------------------------- /sounds/hit-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-04.mp3 -------------------------------------------------------------------------------- /sounds/hit-04.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-04.sound.json -------------------------------------------------------------------------------- /sounds/hit-05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-05.mp3 -------------------------------------------------------------------------------- /sounds/hit-05.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-05.sound.json -------------------------------------------------------------------------------- /sounds/hit-06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-06.mp3 -------------------------------------------------------------------------------- /sounds/hit-06.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-06.sound.json -------------------------------------------------------------------------------- /sounds/hit-07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-07.mp3 -------------------------------------------------------------------------------- /sounds/hit-07.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-07.sound.json -------------------------------------------------------------------------------- /sounds/hit-08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-08.mp3 -------------------------------------------------------------------------------- /sounds/hit-08.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-08.sound.json -------------------------------------------------------------------------------- /sounds/hit-09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-09.mp3 -------------------------------------------------------------------------------- /sounds/hit-09.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-09.sound.json -------------------------------------------------------------------------------- /sounds/hit-10.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-10.mp3 -------------------------------------------------------------------------------- /sounds/hit-10.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-10.sound.json -------------------------------------------------------------------------------- /sounds/hit-11.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-11.mp3 -------------------------------------------------------------------------------- /sounds/hit-11.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-11.sound.json -------------------------------------------------------------------------------- /sounds/hit-12.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-12.mp3 -------------------------------------------------------------------------------- /sounds/hit-12.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/hit-12.sound.json -------------------------------------------------------------------------------- /sounds/jump-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-00.mp3 -------------------------------------------------------------------------------- /sounds/jump-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-00.sound.json -------------------------------------------------------------------------------- /sounds/jump-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-01.mp3 -------------------------------------------------------------------------------- /sounds/jump-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-01.sound.json -------------------------------------------------------------------------------- /sounds/jump-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-02.mp3 -------------------------------------------------------------------------------- /sounds/jump-02.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-02.sound.json -------------------------------------------------------------------------------- /sounds/jump-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-03.mp3 -------------------------------------------------------------------------------- /sounds/jump-03.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-03.sound.json -------------------------------------------------------------------------------- /sounds/jump-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-04.mp3 -------------------------------------------------------------------------------- /sounds/jump-04.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-04.sound.json -------------------------------------------------------------------------------- /sounds/jump-05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-05.mp3 -------------------------------------------------------------------------------- /sounds/jump-05.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-05.sound.json -------------------------------------------------------------------------------- /sounds/jump-06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-06.mp3 -------------------------------------------------------------------------------- /sounds/jump-06.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-06.sound.json -------------------------------------------------------------------------------- /sounds/jump-07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-07.mp3 -------------------------------------------------------------------------------- /sounds/jump-07.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-07.sound.json -------------------------------------------------------------------------------- /sounds/jump-08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-08.mp3 -------------------------------------------------------------------------------- /sounds/jump-08.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-08.sound.json -------------------------------------------------------------------------------- /sounds/jump-09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-09.mp3 -------------------------------------------------------------------------------- /sounds/jump-09.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/jump-09.sound.json -------------------------------------------------------------------------------- /sounds/loop-agent.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-agent.mp3 -------------------------------------------------------------------------------- /sounds/loop-alarm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-alarm.mp3 -------------------------------------------------------------------------------- /sounds/loop-arcade.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-arcade.mp3 -------------------------------------------------------------------------------- /sounds/loop-beat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-beat.mp3 -------------------------------------------------------------------------------- /sounds/loop-beat.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-beat.sound.json -------------------------------------------------------------------------------- /sounds/loop-built-this.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-built-this.mp3 -------------------------------------------------------------------------------- /sounds/loop-castle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-castle.mp3 -------------------------------------------------------------------------------- /sounds/loop-chilltech.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-chilltech.mp3 -------------------------------------------------------------------------------- /sounds/loop-departure.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-departure.mp3 -------------------------------------------------------------------------------- /sounds/loop-edm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-edm.mp3 -------------------------------------------------------------------------------- /sounds/loop-edm.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-edm.sound.json -------------------------------------------------------------------------------- /sounds/loop-escalator.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-escalator.mp3 -------------------------------------------------------------------------------- /sounds/loop-fight.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-fight.mp3 -------------------------------------------------------------------------------- /sounds/loop-footsteps.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-footsteps.mp3 -------------------------------------------------------------------------------- /sounds/loop-forest.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-forest.mp3 -------------------------------------------------------------------------------- /sounds/loop-frantic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-frantic.mp3 -------------------------------------------------------------------------------- /sounds/loop-helicopter.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-helicopter.mp3 -------------------------------------------------------------------------------- /sounds/loop-joy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-joy.mp3 -------------------------------------------------------------------------------- /sounds/loop-joy.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-joy.sound.json -------------------------------------------------------------------------------- /sounds/loop-mega.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-mega.mp3 -------------------------------------------------------------------------------- /sounds/loop-mega.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-mega.sound.json -------------------------------------------------------------------------------- /sounds/loop-metal.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-metal.mp3 -------------------------------------------------------------------------------- /sounds/loop-munster.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-munster.mp3 -------------------------------------------------------------------------------- /sounds/loop-overworld.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-overworld.mp3 -------------------------------------------------------------------------------- /sounds/loop-prometheus.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-prometheus.mp3 -------------------------------------------------------------------------------- /sounds/loop-puzzle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-puzzle.mp3 -------------------------------------------------------------------------------- /sounds/loop-sanctuary.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-sanctuary.mp3 -------------------------------------------------------------------------------- /sounds/loop-select.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-select.mp3 -------------------------------------------------------------------------------- /sounds/loop-soar.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-soar.mp3 -------------------------------------------------------------------------------- /sounds/loop-soar.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-soar.sound.json -------------------------------------------------------------------------------- /sounds/loop-space.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-space.mp3 -------------------------------------------------------------------------------- /sounds/loop-spin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-spin.mp3 -------------------------------------------------------------------------------- /sounds/loop-spin.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-spin.sound.json -------------------------------------------------------------------------------- /sounds/loop-splash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-splash.mp3 -------------------------------------------------------------------------------- /sounds/loop-tastic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-tastic.mp3 -------------------------------------------------------------------------------- /sounds/loop-town.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-town.mp3 -------------------------------------------------------------------------------- /sounds/loop-town.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-town.sound.json -------------------------------------------------------------------------------- /sounds/loop-triumphant.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-triumphant.mp3 -------------------------------------------------------------------------------- /sounds/loop-victory.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-victory.mp3 -------------------------------------------------------------------------------- /sounds/loop-winch.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-winch.mp3 -------------------------------------------------------------------------------- /sounds/loop-wind.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-wind.mp3 -------------------------------------------------------------------------------- /sounds/loop-wind.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/loop-wind.sound.json -------------------------------------------------------------------------------- /sounds/music-boss.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-boss.mp3 -------------------------------------------------------------------------------- /sounds/music-box_jump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-box_jump.mp3 -------------------------------------------------------------------------------- /sounds/music-brawl.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-brawl.mp3 -------------------------------------------------------------------------------- /sounds/music-candy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-candy.mp3 -------------------------------------------------------------------------------- /sounds/music-connected.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-connected.mp3 -------------------------------------------------------------------------------- /sounds/music-credits.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-credits.mp3 -------------------------------------------------------------------------------- /sounds/music-days.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-days.mp3 -------------------------------------------------------------------------------- /sounds/music-deep_blue.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-deep_blue.mp3 -------------------------------------------------------------------------------- /sounds/music-go.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-go.mp3 -------------------------------------------------------------------------------- /sounds/music-go.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-go.sound.json -------------------------------------------------------------------------------- /sounds/music-moon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-moon.mp3 -------------------------------------------------------------------------------- /sounds/music-opening.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-opening.mp3 -------------------------------------------------------------------------------- /sounds/music-race.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-race.mp3 -------------------------------------------------------------------------------- /sounds/music-royal.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-royal.mp3 -------------------------------------------------------------------------------- /sounds/music-sanctuary.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-sanctuary.mp3 -------------------------------------------------------------------------------- /sounds/music-saturday.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-saturday.mp3 -------------------------------------------------------------------------------- /sounds/music-sonata.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-sonata.mp3 -------------------------------------------------------------------------------- /sounds/music-vice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-vice.mp3 -------------------------------------------------------------------------------- /sounds/music-viper.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/music-viper.mp3 -------------------------------------------------------------------------------- /sounds/powerup-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-00.mp3 -------------------------------------------------------------------------------- /sounds/powerup-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-01.mp3 -------------------------------------------------------------------------------- /sounds/powerup-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-02.mp3 -------------------------------------------------------------------------------- /sounds/powerup-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-03.mp3 -------------------------------------------------------------------------------- /sounds/powerup-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-04.mp3 -------------------------------------------------------------------------------- /sounds/powerup-05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-05.mp3 -------------------------------------------------------------------------------- /sounds/powerup-06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-06.mp3 -------------------------------------------------------------------------------- /sounds/powerup-07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-07.mp3 -------------------------------------------------------------------------------- /sounds/powerup-08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-08.mp3 -------------------------------------------------------------------------------- /sounds/powerup-09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-09.mp3 -------------------------------------------------------------------------------- /sounds/powerup-10.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-10.mp3 -------------------------------------------------------------------------------- /sounds/powerup-11.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/powerup-11.mp3 -------------------------------------------------------------------------------- /sounds/shoot-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-00.mp3 -------------------------------------------------------------------------------- /sounds/shoot-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-00.sound.json -------------------------------------------------------------------------------- /sounds/shoot-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-01.mp3 -------------------------------------------------------------------------------- /sounds/shoot-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-01.sound.json -------------------------------------------------------------------------------- /sounds/shoot-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-02.mp3 -------------------------------------------------------------------------------- /sounds/shoot-02.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-02.sound.json -------------------------------------------------------------------------------- /sounds/shoot-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-03.mp3 -------------------------------------------------------------------------------- /sounds/shoot-03.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-03.sound.json -------------------------------------------------------------------------------- /sounds/shoot-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-04.mp3 -------------------------------------------------------------------------------- /sounds/shoot-04.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-04.sound.json -------------------------------------------------------------------------------- /sounds/shoot-05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-05.mp3 -------------------------------------------------------------------------------- /sounds/shoot-05.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-05.sound.json -------------------------------------------------------------------------------- /sounds/shoot-06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-06.mp3 -------------------------------------------------------------------------------- /sounds/shoot-06.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-06.sound.json -------------------------------------------------------------------------------- /sounds/shoot-07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-07.mp3 -------------------------------------------------------------------------------- /sounds/shoot-07.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-07.sound.json -------------------------------------------------------------------------------- /sounds/shoot-08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-08.mp3 -------------------------------------------------------------------------------- /sounds/shoot-08.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-08.sound.json -------------------------------------------------------------------------------- /sounds/shoot-09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-09.mp3 -------------------------------------------------------------------------------- /sounds/shoot-09.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-09.sound.json -------------------------------------------------------------------------------- /sounds/shoot-10.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-10.mp3 -------------------------------------------------------------------------------- /sounds/shoot-10.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-10.sound.json -------------------------------------------------------------------------------- /sounds/shoot-11.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-11.mp3 -------------------------------------------------------------------------------- /sounds/shoot-11.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-11.sound.json -------------------------------------------------------------------------------- /sounds/shoot-12.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-12.mp3 -------------------------------------------------------------------------------- /sounds/shoot-12.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-12.sound.json -------------------------------------------------------------------------------- /sounds/shoot-13.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-13.mp3 -------------------------------------------------------------------------------- /sounds/shoot-13.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-13.sound.json -------------------------------------------------------------------------------- /sounds/shoot-14.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-14.mp3 -------------------------------------------------------------------------------- /sounds/shoot-14.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/shoot-14.sound.json -------------------------------------------------------------------------------- /sounds/silence.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/silence.mp3 -------------------------------------------------------------------------------- /sounds/silence.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/silence.sound.json -------------------------------------------------------------------------------- /sounds/sparks-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/sparks-00.mp3 -------------------------------------------------------------------------------- /sounds/sparks-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/sparks-00.sound.json -------------------------------------------------------------------------------- /sounds/sparks-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/sparks-01.mp3 -------------------------------------------------------------------------------- /sounds/sparks-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/sparks-01.sound.json -------------------------------------------------------------------------------- /sounds/sparks-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/sparks-02.mp3 -------------------------------------------------------------------------------- /sounds/sparks-02.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/sparks-02.sound.json -------------------------------------------------------------------------------- /sounds/sparks-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/sparks-03.mp3 -------------------------------------------------------------------------------- /sounds/sparks-03.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/sparks-03.sound.json -------------------------------------------------------------------------------- /sounds/sparks-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/sparks-04.mp3 -------------------------------------------------------------------------------- /sounds/splash-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/splash-00.mp3 -------------------------------------------------------------------------------- /sounds/splash-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/splash-01.mp3 -------------------------------------------------------------------------------- /sounds/splash-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/splash-02.mp3 -------------------------------------------------------------------------------- /sounds/splash-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/splash-03.mp3 -------------------------------------------------------------------------------- /sounds/splash-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/splash-04.mp3 -------------------------------------------------------------------------------- /sounds/splash-05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/splash-05.mp3 -------------------------------------------------------------------------------- /sounds/splash-06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/splash-06.mp3 -------------------------------------------------------------------------------- /sounds/splash-07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/splash-07.mp3 -------------------------------------------------------------------------------- /sounds/splash-08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/splash-08.mp3 -------------------------------------------------------------------------------- /sounds/splash-09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/splash-09.mp3 -------------------------------------------------------------------------------- /sounds/wild-00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-00.mp3 -------------------------------------------------------------------------------- /sounds/wild-00.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-00.sound.json -------------------------------------------------------------------------------- /sounds/wild-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-01.mp3 -------------------------------------------------------------------------------- /sounds/wild-01.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-01.sound.json -------------------------------------------------------------------------------- /sounds/wild-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-02.mp3 -------------------------------------------------------------------------------- /sounds/wild-02.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-02.sound.json -------------------------------------------------------------------------------- /sounds/wild-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-03.mp3 -------------------------------------------------------------------------------- /sounds/wild-03.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-03.sound.json -------------------------------------------------------------------------------- /sounds/wild-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-04.mp3 -------------------------------------------------------------------------------- /sounds/wild-04.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-04.sound.json -------------------------------------------------------------------------------- /sounds/wild-05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-05.mp3 -------------------------------------------------------------------------------- /sounds/wild-05.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-05.sound.json -------------------------------------------------------------------------------- /sounds/wild-06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-06.mp3 -------------------------------------------------------------------------------- /sounds/wild-06.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-06.sound.json -------------------------------------------------------------------------------- /sounds/wild-07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-07.mp3 -------------------------------------------------------------------------------- /sounds/wild-07.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-07.sound.json -------------------------------------------------------------------------------- /sounds/wild-08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-08.mp3 -------------------------------------------------------------------------------- /sounds/wild-08.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-08.sound.json -------------------------------------------------------------------------------- /sounds/wild-09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-09.mp3 -------------------------------------------------------------------------------- /sounds/wild-09.sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sounds/wild-09.sound.json -------------------------------------------------------------------------------- /sprites/chopper-44x99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/chopper-44x99.png -------------------------------------------------------------------------------- /sprites/cursor-13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/cursor-13x13.png -------------------------------------------------------------------------------- /sprites/cursor-9x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/cursor-9x9.png -------------------------------------------------------------------------------- /sprites/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/cursor.png -------------------------------------------------------------------------------- /sprites/road_tiles_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/road_tiles_64.png -------------------------------------------------------------------------------- /sprites/shapes-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/shapes-32x32.png -------------------------------------------------------------------------------- /sprites/space-moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/space-moon.png -------------------------------------------------------------------------------- /sprites/space-planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/space-planet.png -------------------------------------------------------------------------------- /sprites/space-ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/space-ring.png -------------------------------------------------------------------------------- /sprites/spaceship128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/spaceship128.png -------------------------------------------------------------------------------- /sprites/spaceship32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/spaceship32.png -------------------------------------------------------------------------------- /sprites/spaceship64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/spaceship64.png -------------------------------------------------------------------------------- /sprites/tank-46x85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/sprites/tank-46x85.png -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | token.txt 2 | -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | # Python module directory file 2 | -------------------------------------------------------------------------------- /tools/add_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/add_asset.py -------------------------------------------------------------------------------- /tools/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/export.py -------------------------------------------------------------------------------- /tools/font-update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/font-update.py -------------------------------------------------------------------------------- /tools/fontgen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/fontgen.html -------------------------------------------------------------------------------- /tools/fontpack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/fontpack.html -------------------------------------------------------------------------------- /tools/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/png.py -------------------------------------------------------------------------------- /tools/project_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/project_linter.py -------------------------------------------------------------------------------- /tools/pyxlscript-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/pyxlscript-mode.el -------------------------------------------------------------------------------- /tools/quad_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/quad_utils.py -------------------------------------------------------------------------------- /tools/quaddepend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/quaddepend.py -------------------------------------------------------------------------------- /tools/quadplay-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/quadplay-server -------------------------------------------------------------------------------- /tools/quadplay-server.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/quadplay-server.cmd -------------------------------------------------------------------------------- /tools/quadplay-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/quadplay-server.py -------------------------------------------------------------------------------- /tools/quantize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/quantize.html -------------------------------------------------------------------------------- /tools/rainbow-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/rainbow-mode.el -------------------------------------------------------------------------------- /tools/scalepix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/scalepix.html -------------------------------------------------------------------------------- /tools/set_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/set_license.py -------------------------------------------------------------------------------- /tools/sort_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/sort_json.py -------------------------------------------------------------------------------- /tools/start-invisible.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/start-invisible.vbs -------------------------------------------------------------------------------- /tools/workjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan3d/quadplay/HEAD/tools/workjson.py --------------------------------------------------------------------------------