├── .DS_Store ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── alpha-remodel.js ├── alpha.js ├── beta.js ├── future.html ├── future.js ├── future.md ├── index.html ├── style.css ├── tieshooter-sprite-test.txt └── tieshooter-spritesheet-test.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Ds_Store 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/README.md -------------------------------------------------------------------------------- /alpha-remodel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/alpha-remodel.js -------------------------------------------------------------------------------- /alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/alpha.js -------------------------------------------------------------------------------- /beta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/beta.js -------------------------------------------------------------------------------- /future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/future.html -------------------------------------------------------------------------------- /future.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/future.js -------------------------------------------------------------------------------- /future.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/future.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/index.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/style.css -------------------------------------------------------------------------------- /tieshooter-sprite-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/tieshooter-sprite-test.txt -------------------------------------------------------------------------------- /tieshooter-spritesheet-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoWorms/asciiD/HEAD/tieshooter-spritesheet-test.txt --------------------------------------------------------------------------------