├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── bin └── tspico8.js ├── demo.gif ├── package.json ├── pico-8-8x.png ├── pico8.png ├── src └── tspico8.ts └── tocopy ├── game.p8 ├── main.ts ├── pico8.d.ts ├── spritesheet.png ├── tsconfig.json └── tspico8.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/README.md -------------------------------------------------------------------------------- /bin/tspico8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/bin/tspico8.js -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/package.json -------------------------------------------------------------------------------- /pico-8-8x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/pico-8-8x.png -------------------------------------------------------------------------------- /pico8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/pico8.png -------------------------------------------------------------------------------- /src/tspico8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/src/tspico8.ts -------------------------------------------------------------------------------- /tocopy/game.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/tocopy/game.p8 -------------------------------------------------------------------------------- /tocopy/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/tocopy/main.ts -------------------------------------------------------------------------------- /tocopy/pico8.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/tocopy/pico8.d.ts -------------------------------------------------------------------------------- /tocopy/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/tocopy/spritesheet.png -------------------------------------------------------------------------------- /tocopy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/tocopy/tsconfig.json -------------------------------------------------------------------------------- /tocopy/tspico8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmountain/pico-8-typescript/HEAD/tocopy/tspico8.json --------------------------------------------------------------------------------