├── .gitignore ├── .npmignore ├── AGENTS.md ├── CLAUDE.md ├── LICENSE.txt ├── README.md ├── README_ja.md ├── crisp-game-lib-guide.md ├── docs ├── _template │ ├── jsconfig.json │ └── main.js ├── _template_bundler │ ├── index.html │ └── main.js ├── aerialbar │ ├── jsconfig.json │ └── main.js ├── arcfire │ ├── jsconfig.json │ └── main.js ├── balance │ ├── jsconfig.json │ └── main.js ├── balloon │ ├── jsconfig.json │ └── main.js ├── bamboo │ ├── jsconfig.json │ └── main.js ├── baroll │ ├── jsconfig.json │ └── main.js ├── bblast │ ├── jsconfig.json │ └── main.js ├── boarding │ ├── jsconfig.json │ └── main.js ├── bombup │ ├── jsconfig.json │ └── main.js ├── bottop │ ├── jsconfig.json │ └── main.js ├── bundle.d.ts ├── bundle.js ├── bwalls │ ├── jsconfig.json │ └── main.js ├── cardq │ ├── jsconfig.json │ └── main.js ├── catep │ ├── jsconfig.json │ └── main.js ├── characters.js ├── chargebeam │ ├── jsconfig.json │ └── main.js ├── cnodes │ ├── jsconfig.json │ └── main.js ├── count │ ├── jsconfig.json │ └── main.js ├── crossline │ ├── jsconfig.json │ └── main.js ├── cywall │ ├── jsconfig.json │ └── main.js ├── darkcave │ ├── jsconfig.json │ └── main.js ├── descents │ ├── jsconfig.json │ └── main.js ├── digi10 │ ├── jsconfig.json │ └── main.js ├── dinos │ ├── audios │ │ ├── attack.mp3 │ │ ├── bgm.mp3 │ │ ├── hit.mp3 │ │ ├── jump.mp3 │ │ ├── powerup.mp3 │ │ └── stomp.mp3 │ ├── images │ │ ├── background.png │ │ ├── cactus.png │ │ ├── ground.png │ │ ├── trex.png │ │ ├── trex2.png │ │ └── trex3.png │ ├── jsconfig.json │ └── main.js ├── divarr │ ├── jsconfig.json │ └── main.js ├── doshin │ ├── jsconfig.json │ └── main.js ├── earock │ ├── jsconfig.json │ └── main.js ├── findastar │ ├── jsconfig.json │ └── main.js ├── flipbomb │ ├── jsconfig.json │ └── main.js ├── floater │ ├── jsconfig.json │ └── main.js ├── floors5 │ ├── jsconfig.json │ └── main.js ├── foosan │ ├── jsconfig.json │ └── main.js ├── forfour │ ├── jsconfig.json │ └── main.js ├── fromtwosides │ ├── jsconfig.json │ └── main.js ├── froooog │ ├── jsconfig.json │ └── main.js ├── futurewake │ ├── jsconfig.json │ └── main.js ├── getting_started │ └── index.html ├── gloop │ ├── jsconfig.json │ └── main.js ├── golfme │ ├── jsconfig.json │ └── main.js ├── graveler │ ├── jsconfig.json │ └── main.js ├── grenadier │ ├── jsconfig.json │ └── main.js ├── hitblowup │ ├── jsconfig.json │ └── main.js ├── hoppingp │ ├── jsconfig.json │ └── main.js ├── hyperlaser │ ├── jsconfig.json │ └── main.js ├── index.html ├── infrange │ ├── jsconfig.json │ └── main.js ├── interspace │ ├── jsconfig.json │ └── main.js ├── jujump │ ├── jsconfig.json │ └── main.js ├── jumpon │ ├── jsconfig.json │ └── main.js ├── ladderdrop │ ├── jsconfig.json │ └── main.js ├── laserfortress │ ├── jsconfig.json │ └── main.js ├── liedown │ ├── jsconfig.json │ └── main.js ├── lightdark │ ├── jsconfig.json │ └── main.js ├── lland │ ├── jsconfig.json │ └── main.js ├── mirrorfloor │ ├── jsconfig.json │ └── main.js ├── monjum │ ├── jsconfig.json │ └── main.js ├── notturn │ ├── jsconfig.json │ └── main.js ├── nsclimb │ ├── jsconfig.json │ └── main.js ├── numberball │ ├── jsconfig.json │ └── main.js ├── orbitman │ ├── jsconfig.json │ └── main.js ├── pairsdrop │ ├── jsconfig.json │ └── main.js ├── parking │ ├── jsconfig.json │ └── main.js ├── pfit │ ├── jsconfig.json │ └── main.js ├── photonline │ ├── jsconfig.json │ └── main.js ├── pileup │ ├── jsconfig.json │ └── main.js ├── pillars3d │ ├── jsconfig.json │ └── main.js ├── pinclimb │ ├── jsconfig.json │ └── main.js ├── pizzaarrow │ ├── jsconfig.json │ └── main.js ├── pressm │ ├── jsconfig.json │ └── main.js ├── pumppress │ ├── jsconfig.json │ └── main.js ├── raid │ ├── jsconfig.json │ └── main.js ├── rebirth │ ├── jsconfig.json │ └── main.js ├── ref_collision │ ├── jsconfig.json │ └── main.js ├── ref_document │ ├── .nojekyll │ ├── assets │ │ ├── highlight.css │ │ ├── main.js │ │ ├── search.js │ │ └── style.css │ ├── classes │ │ └── Vector.html │ ├── functions │ │ ├── abs.html │ │ ├── addScore.html │ │ ├── addWithCharCode.html │ │ ├── arc.html │ │ ├── atan2.html │ │ ├── bar.html │ │ ├── box.html │ │ ├── ceil.html │ │ ├── char.html │ │ ├── clamp.html │ │ ├── color.html │ │ ├── cos.html │ │ ├── end.html │ │ ├── floor.html │ │ ├── line.html │ │ ├── max.html │ │ ├── min.html │ │ ├── particle.html │ │ ├── play.html │ │ ├── pow.html │ │ ├── range.html │ │ ├── rect.html │ │ ├── remove.html │ │ ├── rnd.html │ │ ├── rndi.html │ │ ├── rnds.html │ │ ├── round.html │ │ ├── sin.html │ │ ├── sqrt.html │ │ ├── text.html │ │ ├── times.html │ │ ├── vec.html │ │ └── wrap.html │ ├── index.html │ ├── interfaces │ │ └── VectorLike.html │ ├── modules.html │ ├── modules │ │ └── input.html │ ├── types │ │ ├── Collision.html │ │ ├── LetterOptions.html │ │ ├── Options.html │ │ ├── SoundEffectType.html │ │ └── ThemeName.html │ └── variables │ │ ├── PI.html │ │ ├── difficulty.html │ │ ├── input.isJustPressed.html │ │ ├── input.isJustReleased.html │ │ ├── input.isPressed.html │ │ ├── input.pos.html │ │ ├── score.html │ │ └── ticks.html ├── ref_drawing │ ├── jsconfig.json │ └── main.js ├── ref_input │ ├── jsconfig.json │ └── main.js ├── ref_sound │ ├── jsconfig.json │ └── main.js ├── refbals │ ├── jsconfig.json │ └── main.js ├── regene │ ├── jsconfig.json │ └── main.js ├── rolfrg │ ├── jsconfig.json │ └── main.js ├── rollnrope │ ├── jsconfig.json │ └── main.js ├── scaffold │ ├── jsconfig.json │ └── main.js ├── scrambird │ ├── jsconfig.json │ └── main.js ├── shiny │ ├── jsconfig.json │ └── main.js ├── sighton │ ├── jsconfig.json │ └── main.js ├── skyfloor │ ├── jsconfig.json │ └── main.js ├── slalom │ ├── jsconfig.json │ └── main.js ├── slanes │ ├── jsconfig.json │ └── main.js ├── slashes │ ├── jsconfig.json │ └── main.js ├── smilyangry │ ├── jsconfig.json │ └── main.js ├── snake1 │ ├── jsconfig.json │ └── main.js ├── spearain │ ├── jsconfig.json │ └── main.js ├── subjump │ ├── jsconfig.json │ └── main.js ├── survivor │ ├── jsconfig.json │ └── main.js ├── switchboard │ ├── Pixelated_Dreams.mp3 │ ├── connecting_1.mp3 │ ├── connecting_2.mp3 │ ├── connecting_3.mp3 │ ├── connecting_4.mp3 │ ├── connecting_5.mp3 │ ├── connecting_6.mp3 │ ├── connecting_7.mp3 │ └── main.js ├── tapej │ ├── jsconfig.json │ └── main.js ├── tarutobi │ ├── jsconfig.json │ └── main.js ├── throwm │ ├── jsconfig.json │ └── main.js ├── thrustlr │ ├── jsconfig.json │ └── main.js ├── tilted │ ├── jsconfig.json │ └── main.js ├── totoge │ ├── jsconfig.json │ └── main.js ├── turbulent │ ├── jsconfig.json │ └── main.js ├── twhols │ ├── jsconfig.json │ └── main.js ├── twinp │ ├── jsconfig.json │ └── main.js ├── twolane │ ├── jsconfig.json │ └── main.js ├── unctrl │ ├── jsconfig.json │ └── main.js ├── updownpress │ ├── jsconfig.json │ └── main.js ├── upshot │ ├── jsconfig.json │ └── main.js ├── vhwalls │ ├── jsconfig.json │ └── main.js ├── zartan │ ├── jsconfig.json │ └── main.js └── zoneb │ ├── jsconfig.json │ └── main.js ├── package.json ├── rollup.config.js ├── src ├── audio.ts ├── button.ts ├── collision.ts ├── color.ts ├── debug.ts ├── filters.ts ├── input.ts ├── keyboard.ts ├── letter.ts ├── loop.ts ├── main.ts ├── particle.ts ├── pointer.ts ├── random.ts ├── recorder.ts ├── rect.ts ├── replay.ts ├── textPattern.ts ├── textPatternSmall.ts ├── util.ts ├── vector.ts └── view.ts ├── test ├── helpers │ └── setup.ts ├── integration │ ├── collision.test.ts │ ├── score.test.ts │ └── view.test.ts └── unit │ ├── button.test.ts │ ├── input.test.ts │ ├── loop.test.ts │ └── replay.test.ts ├── tsconfig-rollup.json ├── tsconfig.json └── vitest.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/.npmignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/README.md -------------------------------------------------------------------------------- /README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/README_ja.md -------------------------------------------------------------------------------- /crisp-game-lib-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/crisp-game-lib-guide.md -------------------------------------------------------------------------------- /docs/_template/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/_template/jsconfig.json -------------------------------------------------------------------------------- /docs/_template/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/_template/main.js -------------------------------------------------------------------------------- /docs/_template_bundler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/_template_bundler/index.html -------------------------------------------------------------------------------- /docs/_template_bundler/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/_template_bundler/main.js -------------------------------------------------------------------------------- /docs/aerialbar/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/aerialbar/jsconfig.json -------------------------------------------------------------------------------- /docs/aerialbar/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/aerialbar/main.js -------------------------------------------------------------------------------- /docs/arcfire/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/arcfire/jsconfig.json -------------------------------------------------------------------------------- /docs/arcfire/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/arcfire/main.js -------------------------------------------------------------------------------- /docs/balance/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/balance/jsconfig.json -------------------------------------------------------------------------------- /docs/balance/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/balance/main.js -------------------------------------------------------------------------------- /docs/balloon/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/balloon/jsconfig.json -------------------------------------------------------------------------------- /docs/balloon/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/balloon/main.js -------------------------------------------------------------------------------- /docs/bamboo/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bamboo/jsconfig.json -------------------------------------------------------------------------------- /docs/bamboo/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bamboo/main.js -------------------------------------------------------------------------------- /docs/baroll/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/baroll/jsconfig.json -------------------------------------------------------------------------------- /docs/baroll/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/baroll/main.js -------------------------------------------------------------------------------- /docs/bblast/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bblast/jsconfig.json -------------------------------------------------------------------------------- /docs/bblast/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bblast/main.js -------------------------------------------------------------------------------- /docs/boarding/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/boarding/jsconfig.json -------------------------------------------------------------------------------- /docs/boarding/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/boarding/main.js -------------------------------------------------------------------------------- /docs/bombup/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bombup/jsconfig.json -------------------------------------------------------------------------------- /docs/bombup/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bombup/main.js -------------------------------------------------------------------------------- /docs/bottop/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bottop/jsconfig.json -------------------------------------------------------------------------------- /docs/bottop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bottop/main.js -------------------------------------------------------------------------------- /docs/bundle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bundle.d.ts -------------------------------------------------------------------------------- /docs/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bundle.js -------------------------------------------------------------------------------- /docs/bwalls/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bwalls/jsconfig.json -------------------------------------------------------------------------------- /docs/bwalls/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/bwalls/main.js -------------------------------------------------------------------------------- /docs/cardq/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/cardq/jsconfig.json -------------------------------------------------------------------------------- /docs/cardq/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/cardq/main.js -------------------------------------------------------------------------------- /docs/catep/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/catep/jsconfig.json -------------------------------------------------------------------------------- /docs/catep/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/catep/main.js -------------------------------------------------------------------------------- /docs/characters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/characters.js -------------------------------------------------------------------------------- /docs/chargebeam/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/chargebeam/jsconfig.json -------------------------------------------------------------------------------- /docs/chargebeam/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/chargebeam/main.js -------------------------------------------------------------------------------- /docs/cnodes/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/cnodes/jsconfig.json -------------------------------------------------------------------------------- /docs/cnodes/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/cnodes/main.js -------------------------------------------------------------------------------- /docs/count/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/count/jsconfig.json -------------------------------------------------------------------------------- /docs/count/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/count/main.js -------------------------------------------------------------------------------- /docs/crossline/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/crossline/jsconfig.json -------------------------------------------------------------------------------- /docs/crossline/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/crossline/main.js -------------------------------------------------------------------------------- /docs/cywall/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/cywall/jsconfig.json -------------------------------------------------------------------------------- /docs/cywall/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/cywall/main.js -------------------------------------------------------------------------------- /docs/darkcave/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/darkcave/jsconfig.json -------------------------------------------------------------------------------- /docs/darkcave/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/darkcave/main.js -------------------------------------------------------------------------------- /docs/descents/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/descents/jsconfig.json -------------------------------------------------------------------------------- /docs/descents/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/descents/main.js -------------------------------------------------------------------------------- /docs/digi10/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/digi10/jsconfig.json -------------------------------------------------------------------------------- /docs/digi10/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/digi10/main.js -------------------------------------------------------------------------------- /docs/dinos/audios/attack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/audios/attack.mp3 -------------------------------------------------------------------------------- /docs/dinos/audios/bgm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/audios/bgm.mp3 -------------------------------------------------------------------------------- /docs/dinos/audios/hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/audios/hit.mp3 -------------------------------------------------------------------------------- /docs/dinos/audios/jump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/audios/jump.mp3 -------------------------------------------------------------------------------- /docs/dinos/audios/powerup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/audios/powerup.mp3 -------------------------------------------------------------------------------- /docs/dinos/audios/stomp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/audios/stomp.mp3 -------------------------------------------------------------------------------- /docs/dinos/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/images/background.png -------------------------------------------------------------------------------- /docs/dinos/images/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/images/cactus.png -------------------------------------------------------------------------------- /docs/dinos/images/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/images/ground.png -------------------------------------------------------------------------------- /docs/dinos/images/trex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/images/trex.png -------------------------------------------------------------------------------- /docs/dinos/images/trex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/images/trex2.png -------------------------------------------------------------------------------- /docs/dinos/images/trex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/images/trex3.png -------------------------------------------------------------------------------- /docs/dinos/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/jsconfig.json -------------------------------------------------------------------------------- /docs/dinos/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/dinos/main.js -------------------------------------------------------------------------------- /docs/divarr/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/divarr/jsconfig.json -------------------------------------------------------------------------------- /docs/divarr/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/divarr/main.js -------------------------------------------------------------------------------- /docs/doshin/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/doshin/jsconfig.json -------------------------------------------------------------------------------- /docs/doshin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/doshin/main.js -------------------------------------------------------------------------------- /docs/earock/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/earock/jsconfig.json -------------------------------------------------------------------------------- /docs/earock/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/earock/main.js -------------------------------------------------------------------------------- /docs/findastar/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/findastar/jsconfig.json -------------------------------------------------------------------------------- /docs/findastar/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/findastar/main.js -------------------------------------------------------------------------------- /docs/flipbomb/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/flipbomb/jsconfig.json -------------------------------------------------------------------------------- /docs/flipbomb/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/flipbomb/main.js -------------------------------------------------------------------------------- /docs/floater/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/floater/jsconfig.json -------------------------------------------------------------------------------- /docs/floater/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/floater/main.js -------------------------------------------------------------------------------- /docs/floors5/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/floors5/jsconfig.json -------------------------------------------------------------------------------- /docs/floors5/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/floors5/main.js -------------------------------------------------------------------------------- /docs/foosan/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/foosan/jsconfig.json -------------------------------------------------------------------------------- /docs/foosan/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/foosan/main.js -------------------------------------------------------------------------------- /docs/forfour/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/forfour/jsconfig.json -------------------------------------------------------------------------------- /docs/forfour/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/forfour/main.js -------------------------------------------------------------------------------- /docs/fromtwosides/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/fromtwosides/jsconfig.json -------------------------------------------------------------------------------- /docs/fromtwosides/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/fromtwosides/main.js -------------------------------------------------------------------------------- /docs/froooog/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/froooog/jsconfig.json -------------------------------------------------------------------------------- /docs/froooog/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/froooog/main.js -------------------------------------------------------------------------------- /docs/futurewake/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/futurewake/jsconfig.json -------------------------------------------------------------------------------- /docs/futurewake/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/futurewake/main.js -------------------------------------------------------------------------------- /docs/getting_started/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/getting_started/index.html -------------------------------------------------------------------------------- /docs/gloop/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/gloop/jsconfig.json -------------------------------------------------------------------------------- /docs/gloop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/gloop/main.js -------------------------------------------------------------------------------- /docs/golfme/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/golfme/jsconfig.json -------------------------------------------------------------------------------- /docs/golfme/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/golfme/main.js -------------------------------------------------------------------------------- /docs/graveler/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/graveler/jsconfig.json -------------------------------------------------------------------------------- /docs/graveler/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/graveler/main.js -------------------------------------------------------------------------------- /docs/grenadier/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/grenadier/jsconfig.json -------------------------------------------------------------------------------- /docs/grenadier/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/grenadier/main.js -------------------------------------------------------------------------------- /docs/hitblowup/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/hitblowup/jsconfig.json -------------------------------------------------------------------------------- /docs/hitblowup/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/hitblowup/main.js -------------------------------------------------------------------------------- /docs/hoppingp/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/hoppingp/jsconfig.json -------------------------------------------------------------------------------- /docs/hoppingp/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/hoppingp/main.js -------------------------------------------------------------------------------- /docs/hyperlaser/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/hyperlaser/jsconfig.json -------------------------------------------------------------------------------- /docs/hyperlaser/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/hyperlaser/main.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/infrange/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/infrange/jsconfig.json -------------------------------------------------------------------------------- /docs/infrange/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/infrange/main.js -------------------------------------------------------------------------------- /docs/interspace/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/interspace/jsconfig.json -------------------------------------------------------------------------------- /docs/interspace/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/interspace/main.js -------------------------------------------------------------------------------- /docs/jujump/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/jujump/jsconfig.json -------------------------------------------------------------------------------- /docs/jujump/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/jujump/main.js -------------------------------------------------------------------------------- /docs/jumpon/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/jumpon/jsconfig.json -------------------------------------------------------------------------------- /docs/jumpon/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/jumpon/main.js -------------------------------------------------------------------------------- /docs/ladderdrop/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ladderdrop/jsconfig.json -------------------------------------------------------------------------------- /docs/ladderdrop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ladderdrop/main.js -------------------------------------------------------------------------------- /docs/laserfortress/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/laserfortress/jsconfig.json -------------------------------------------------------------------------------- /docs/laserfortress/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/laserfortress/main.js -------------------------------------------------------------------------------- /docs/liedown/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/liedown/jsconfig.json -------------------------------------------------------------------------------- /docs/liedown/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/liedown/main.js -------------------------------------------------------------------------------- /docs/lightdark/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/lightdark/jsconfig.json -------------------------------------------------------------------------------- /docs/lightdark/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/lightdark/main.js -------------------------------------------------------------------------------- /docs/lland/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/lland/jsconfig.json -------------------------------------------------------------------------------- /docs/lland/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/lland/main.js -------------------------------------------------------------------------------- /docs/mirrorfloor/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/mirrorfloor/jsconfig.json -------------------------------------------------------------------------------- /docs/mirrorfloor/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/mirrorfloor/main.js -------------------------------------------------------------------------------- /docs/monjum/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/monjum/jsconfig.json -------------------------------------------------------------------------------- /docs/monjum/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/monjum/main.js -------------------------------------------------------------------------------- /docs/notturn/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/notturn/jsconfig.json -------------------------------------------------------------------------------- /docs/notturn/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/notturn/main.js -------------------------------------------------------------------------------- /docs/nsclimb/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/nsclimb/jsconfig.json -------------------------------------------------------------------------------- /docs/nsclimb/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/nsclimb/main.js -------------------------------------------------------------------------------- /docs/numberball/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/numberball/jsconfig.json -------------------------------------------------------------------------------- /docs/numberball/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/numberball/main.js -------------------------------------------------------------------------------- /docs/orbitman/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/orbitman/jsconfig.json -------------------------------------------------------------------------------- /docs/orbitman/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/orbitman/main.js -------------------------------------------------------------------------------- /docs/pairsdrop/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pairsdrop/jsconfig.json -------------------------------------------------------------------------------- /docs/pairsdrop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pairsdrop/main.js -------------------------------------------------------------------------------- /docs/parking/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/parking/jsconfig.json -------------------------------------------------------------------------------- /docs/parking/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/parking/main.js -------------------------------------------------------------------------------- /docs/pfit/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pfit/jsconfig.json -------------------------------------------------------------------------------- /docs/pfit/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pfit/main.js -------------------------------------------------------------------------------- /docs/photonline/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/photonline/jsconfig.json -------------------------------------------------------------------------------- /docs/photonline/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/photonline/main.js -------------------------------------------------------------------------------- /docs/pileup/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pileup/jsconfig.json -------------------------------------------------------------------------------- /docs/pileup/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pileup/main.js -------------------------------------------------------------------------------- /docs/pillars3d/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pillars3d/jsconfig.json -------------------------------------------------------------------------------- /docs/pillars3d/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pillars3d/main.js -------------------------------------------------------------------------------- /docs/pinclimb/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pinclimb/jsconfig.json -------------------------------------------------------------------------------- /docs/pinclimb/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pinclimb/main.js -------------------------------------------------------------------------------- /docs/pizzaarrow/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pizzaarrow/jsconfig.json -------------------------------------------------------------------------------- /docs/pizzaarrow/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pizzaarrow/main.js -------------------------------------------------------------------------------- /docs/pressm/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pressm/jsconfig.json -------------------------------------------------------------------------------- /docs/pressm/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pressm/main.js -------------------------------------------------------------------------------- /docs/pumppress/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pumppress/jsconfig.json -------------------------------------------------------------------------------- /docs/pumppress/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/pumppress/main.js -------------------------------------------------------------------------------- /docs/raid/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/raid/jsconfig.json -------------------------------------------------------------------------------- /docs/raid/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/raid/main.js -------------------------------------------------------------------------------- /docs/rebirth/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/rebirth/jsconfig.json -------------------------------------------------------------------------------- /docs/rebirth/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/rebirth/main.js -------------------------------------------------------------------------------- /docs/ref_collision/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_collision/jsconfig.json -------------------------------------------------------------------------------- /docs/ref_collision/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_collision/main.js -------------------------------------------------------------------------------- /docs/ref_document/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/.nojekyll -------------------------------------------------------------------------------- /docs/ref_document/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/assets/highlight.css -------------------------------------------------------------------------------- /docs/ref_document/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/assets/main.js -------------------------------------------------------------------------------- /docs/ref_document/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/assets/search.js -------------------------------------------------------------------------------- /docs/ref_document/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/assets/style.css -------------------------------------------------------------------------------- /docs/ref_document/classes/Vector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/classes/Vector.html -------------------------------------------------------------------------------- /docs/ref_document/functions/abs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/abs.html -------------------------------------------------------------------------------- /docs/ref_document/functions/addScore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/addScore.html -------------------------------------------------------------------------------- /docs/ref_document/functions/addWithCharCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/addWithCharCode.html -------------------------------------------------------------------------------- /docs/ref_document/functions/arc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/arc.html -------------------------------------------------------------------------------- /docs/ref_document/functions/atan2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/atan2.html -------------------------------------------------------------------------------- /docs/ref_document/functions/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/bar.html -------------------------------------------------------------------------------- /docs/ref_document/functions/box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/box.html -------------------------------------------------------------------------------- /docs/ref_document/functions/ceil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/ceil.html -------------------------------------------------------------------------------- /docs/ref_document/functions/char.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/char.html -------------------------------------------------------------------------------- /docs/ref_document/functions/clamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/clamp.html -------------------------------------------------------------------------------- /docs/ref_document/functions/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/color.html -------------------------------------------------------------------------------- /docs/ref_document/functions/cos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/cos.html -------------------------------------------------------------------------------- /docs/ref_document/functions/end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/end.html -------------------------------------------------------------------------------- /docs/ref_document/functions/floor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/floor.html -------------------------------------------------------------------------------- /docs/ref_document/functions/line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/line.html -------------------------------------------------------------------------------- /docs/ref_document/functions/max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/max.html -------------------------------------------------------------------------------- /docs/ref_document/functions/min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/min.html -------------------------------------------------------------------------------- /docs/ref_document/functions/particle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/particle.html -------------------------------------------------------------------------------- /docs/ref_document/functions/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/play.html -------------------------------------------------------------------------------- /docs/ref_document/functions/pow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/pow.html -------------------------------------------------------------------------------- /docs/ref_document/functions/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/range.html -------------------------------------------------------------------------------- /docs/ref_document/functions/rect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/rect.html -------------------------------------------------------------------------------- /docs/ref_document/functions/remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/remove.html -------------------------------------------------------------------------------- /docs/ref_document/functions/rnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/rnd.html -------------------------------------------------------------------------------- /docs/ref_document/functions/rndi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/rndi.html -------------------------------------------------------------------------------- /docs/ref_document/functions/rnds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/rnds.html -------------------------------------------------------------------------------- /docs/ref_document/functions/round.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/round.html -------------------------------------------------------------------------------- /docs/ref_document/functions/sin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/sin.html -------------------------------------------------------------------------------- /docs/ref_document/functions/sqrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/sqrt.html -------------------------------------------------------------------------------- /docs/ref_document/functions/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/text.html -------------------------------------------------------------------------------- /docs/ref_document/functions/times.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/times.html -------------------------------------------------------------------------------- /docs/ref_document/functions/vec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/vec.html -------------------------------------------------------------------------------- /docs/ref_document/functions/wrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/functions/wrap.html -------------------------------------------------------------------------------- /docs/ref_document/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/index.html -------------------------------------------------------------------------------- /docs/ref_document/interfaces/VectorLike.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/interfaces/VectorLike.html -------------------------------------------------------------------------------- /docs/ref_document/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/modules.html -------------------------------------------------------------------------------- /docs/ref_document/modules/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/modules/input.html -------------------------------------------------------------------------------- /docs/ref_document/types/Collision.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/types/Collision.html -------------------------------------------------------------------------------- /docs/ref_document/types/LetterOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/types/LetterOptions.html -------------------------------------------------------------------------------- /docs/ref_document/types/Options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/types/Options.html -------------------------------------------------------------------------------- /docs/ref_document/types/SoundEffectType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/types/SoundEffectType.html -------------------------------------------------------------------------------- /docs/ref_document/types/ThemeName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/types/ThemeName.html -------------------------------------------------------------------------------- /docs/ref_document/variables/PI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/variables/PI.html -------------------------------------------------------------------------------- /docs/ref_document/variables/difficulty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/variables/difficulty.html -------------------------------------------------------------------------------- /docs/ref_document/variables/input.isJustPressed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/variables/input.isJustPressed.html -------------------------------------------------------------------------------- /docs/ref_document/variables/input.isJustReleased.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/variables/input.isJustReleased.html -------------------------------------------------------------------------------- /docs/ref_document/variables/input.isPressed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/variables/input.isPressed.html -------------------------------------------------------------------------------- /docs/ref_document/variables/input.pos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/variables/input.pos.html -------------------------------------------------------------------------------- /docs/ref_document/variables/score.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/variables/score.html -------------------------------------------------------------------------------- /docs/ref_document/variables/ticks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_document/variables/ticks.html -------------------------------------------------------------------------------- /docs/ref_drawing/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_drawing/jsconfig.json -------------------------------------------------------------------------------- /docs/ref_drawing/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_drawing/main.js -------------------------------------------------------------------------------- /docs/ref_input/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_input/jsconfig.json -------------------------------------------------------------------------------- /docs/ref_input/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_input/main.js -------------------------------------------------------------------------------- /docs/ref_sound/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_sound/jsconfig.json -------------------------------------------------------------------------------- /docs/ref_sound/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/ref_sound/main.js -------------------------------------------------------------------------------- /docs/refbals/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/refbals/jsconfig.json -------------------------------------------------------------------------------- /docs/refbals/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/refbals/main.js -------------------------------------------------------------------------------- /docs/regene/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/regene/jsconfig.json -------------------------------------------------------------------------------- /docs/regene/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/regene/main.js -------------------------------------------------------------------------------- /docs/rolfrg/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/rolfrg/jsconfig.json -------------------------------------------------------------------------------- /docs/rolfrg/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/rolfrg/main.js -------------------------------------------------------------------------------- /docs/rollnrope/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/rollnrope/jsconfig.json -------------------------------------------------------------------------------- /docs/rollnrope/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/rollnrope/main.js -------------------------------------------------------------------------------- /docs/scaffold/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/scaffold/jsconfig.json -------------------------------------------------------------------------------- /docs/scaffold/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/scaffold/main.js -------------------------------------------------------------------------------- /docs/scrambird/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/scrambird/jsconfig.json -------------------------------------------------------------------------------- /docs/scrambird/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/scrambird/main.js -------------------------------------------------------------------------------- /docs/shiny/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/shiny/jsconfig.json -------------------------------------------------------------------------------- /docs/shiny/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/shiny/main.js -------------------------------------------------------------------------------- /docs/sighton/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/sighton/jsconfig.json -------------------------------------------------------------------------------- /docs/sighton/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/sighton/main.js -------------------------------------------------------------------------------- /docs/skyfloor/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/skyfloor/jsconfig.json -------------------------------------------------------------------------------- /docs/skyfloor/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/skyfloor/main.js -------------------------------------------------------------------------------- /docs/slalom/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/slalom/jsconfig.json -------------------------------------------------------------------------------- /docs/slalom/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/slalom/main.js -------------------------------------------------------------------------------- /docs/slanes/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/slanes/jsconfig.json -------------------------------------------------------------------------------- /docs/slanes/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/slanes/main.js -------------------------------------------------------------------------------- /docs/slashes/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/slashes/jsconfig.json -------------------------------------------------------------------------------- /docs/slashes/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/slashes/main.js -------------------------------------------------------------------------------- /docs/smilyangry/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/smilyangry/jsconfig.json -------------------------------------------------------------------------------- /docs/smilyangry/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/smilyangry/main.js -------------------------------------------------------------------------------- /docs/snake1/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/snake1/jsconfig.json -------------------------------------------------------------------------------- /docs/snake1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/snake1/main.js -------------------------------------------------------------------------------- /docs/spearain/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/spearain/jsconfig.json -------------------------------------------------------------------------------- /docs/spearain/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/spearain/main.js -------------------------------------------------------------------------------- /docs/subjump/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/subjump/jsconfig.json -------------------------------------------------------------------------------- /docs/subjump/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/subjump/main.js -------------------------------------------------------------------------------- /docs/survivor/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/survivor/jsconfig.json -------------------------------------------------------------------------------- /docs/survivor/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/survivor/main.js -------------------------------------------------------------------------------- /docs/switchboard/Pixelated_Dreams.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/switchboard/Pixelated_Dreams.mp3 -------------------------------------------------------------------------------- /docs/switchboard/connecting_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/switchboard/connecting_1.mp3 -------------------------------------------------------------------------------- /docs/switchboard/connecting_2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/switchboard/connecting_2.mp3 -------------------------------------------------------------------------------- /docs/switchboard/connecting_3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/switchboard/connecting_3.mp3 -------------------------------------------------------------------------------- /docs/switchboard/connecting_4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/switchboard/connecting_4.mp3 -------------------------------------------------------------------------------- /docs/switchboard/connecting_5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/switchboard/connecting_5.mp3 -------------------------------------------------------------------------------- /docs/switchboard/connecting_6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/switchboard/connecting_6.mp3 -------------------------------------------------------------------------------- /docs/switchboard/connecting_7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/switchboard/connecting_7.mp3 -------------------------------------------------------------------------------- /docs/switchboard/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/switchboard/main.js -------------------------------------------------------------------------------- /docs/tapej/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/tapej/jsconfig.json -------------------------------------------------------------------------------- /docs/tapej/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/tapej/main.js -------------------------------------------------------------------------------- /docs/tarutobi/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/tarutobi/jsconfig.json -------------------------------------------------------------------------------- /docs/tarutobi/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/tarutobi/main.js -------------------------------------------------------------------------------- /docs/throwm/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/throwm/jsconfig.json -------------------------------------------------------------------------------- /docs/throwm/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/throwm/main.js -------------------------------------------------------------------------------- /docs/thrustlr/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/thrustlr/jsconfig.json -------------------------------------------------------------------------------- /docs/thrustlr/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/thrustlr/main.js -------------------------------------------------------------------------------- /docs/tilted/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/tilted/jsconfig.json -------------------------------------------------------------------------------- /docs/tilted/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/tilted/main.js -------------------------------------------------------------------------------- /docs/totoge/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/totoge/jsconfig.json -------------------------------------------------------------------------------- /docs/totoge/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/totoge/main.js -------------------------------------------------------------------------------- /docs/turbulent/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/turbulent/jsconfig.json -------------------------------------------------------------------------------- /docs/turbulent/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/turbulent/main.js -------------------------------------------------------------------------------- /docs/twhols/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/twhols/jsconfig.json -------------------------------------------------------------------------------- /docs/twhols/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/twhols/main.js -------------------------------------------------------------------------------- /docs/twinp/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/twinp/jsconfig.json -------------------------------------------------------------------------------- /docs/twinp/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/twinp/main.js -------------------------------------------------------------------------------- /docs/twolane/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/twolane/jsconfig.json -------------------------------------------------------------------------------- /docs/twolane/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/twolane/main.js -------------------------------------------------------------------------------- /docs/unctrl/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/unctrl/jsconfig.json -------------------------------------------------------------------------------- /docs/unctrl/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/unctrl/main.js -------------------------------------------------------------------------------- /docs/updownpress/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/updownpress/jsconfig.json -------------------------------------------------------------------------------- /docs/updownpress/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/updownpress/main.js -------------------------------------------------------------------------------- /docs/upshot/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/upshot/jsconfig.json -------------------------------------------------------------------------------- /docs/upshot/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/upshot/main.js -------------------------------------------------------------------------------- /docs/vhwalls/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/vhwalls/jsconfig.json -------------------------------------------------------------------------------- /docs/vhwalls/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/vhwalls/main.js -------------------------------------------------------------------------------- /docs/zartan/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/zartan/jsconfig.json -------------------------------------------------------------------------------- /docs/zartan/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/zartan/main.js -------------------------------------------------------------------------------- /docs/zoneb/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/zoneb/jsconfig.json -------------------------------------------------------------------------------- /docs/zoneb/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/docs/zoneb/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/audio.ts -------------------------------------------------------------------------------- /src/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/button.ts -------------------------------------------------------------------------------- /src/collision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/collision.ts -------------------------------------------------------------------------------- /src/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/color.ts -------------------------------------------------------------------------------- /src/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/debug.ts -------------------------------------------------------------------------------- /src/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/filters.ts -------------------------------------------------------------------------------- /src/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/input.ts -------------------------------------------------------------------------------- /src/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/keyboard.ts -------------------------------------------------------------------------------- /src/letter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/letter.ts -------------------------------------------------------------------------------- /src/loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/loop.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/particle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/particle.ts -------------------------------------------------------------------------------- /src/pointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/pointer.ts -------------------------------------------------------------------------------- /src/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/random.ts -------------------------------------------------------------------------------- /src/recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/recorder.ts -------------------------------------------------------------------------------- /src/rect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/rect.ts -------------------------------------------------------------------------------- /src/replay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/replay.ts -------------------------------------------------------------------------------- /src/textPattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/textPattern.ts -------------------------------------------------------------------------------- /src/textPatternSmall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/textPatternSmall.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/vector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/vector.ts -------------------------------------------------------------------------------- /src/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/src/view.ts -------------------------------------------------------------------------------- /test/helpers/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/test/helpers/setup.ts -------------------------------------------------------------------------------- /test/integration/collision.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/test/integration/collision.test.ts -------------------------------------------------------------------------------- /test/integration/score.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/test/integration/score.test.ts -------------------------------------------------------------------------------- /test/integration/view.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/test/integration/view.test.ts -------------------------------------------------------------------------------- /test/unit/button.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/test/unit/button.test.ts -------------------------------------------------------------------------------- /test/unit/input.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/test/unit/input.test.ts -------------------------------------------------------------------------------- /test/unit/loop.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/test/unit/loop.test.ts -------------------------------------------------------------------------------- /test/unit/replay.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/test/unit/replay.test.ts -------------------------------------------------------------------------------- /tsconfig-rollup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/tsconfig-rollup.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abagames/crisp-game-lib/HEAD/vitest.config.ts --------------------------------------------------------------------------------