├── .gitignore ├── LICENSE ├── README.md ├── _include.sh ├── bin ├── post_sync.sh └── run_aws.sh ├── home.html ├── index.js ├── package.json └── static ├── basic-reactjs-tutorial.jsx ├── bird.png ├── floppybox.jsx ├── jump.wav ├── phaser.min.js └── pipe.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/README.md -------------------------------------------------------------------------------- /_include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/_include.sh -------------------------------------------------------------------------------- /bin/post_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/bin/post_sync.sh -------------------------------------------------------------------------------- /bin/run_aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/bin/run_aws.sh -------------------------------------------------------------------------------- /home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/home.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/package.json -------------------------------------------------------------------------------- /static/basic-reactjs-tutorial.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/static/basic-reactjs-tutorial.jsx -------------------------------------------------------------------------------- /static/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/static/bird.png -------------------------------------------------------------------------------- /static/floppybox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/static/floppybox.jsx -------------------------------------------------------------------------------- /static/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/static/jump.wav -------------------------------------------------------------------------------- /static/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/static/phaser.min.js -------------------------------------------------------------------------------- /static/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgong/floppybox/HEAD/static/pipe.png --------------------------------------------------------------------------------