├── .gitignore ├── .jshintrc ├── README.md ├── dist └── gamecontroller.min.js ├── gulpfile.js ├── license ├── package.json ├── src └── gamecontroller.js └── tests └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhallock/html5-virtual-game-controller/HEAD/.jshintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhallock/html5-virtual-game-controller/HEAD/README.md -------------------------------------------------------------------------------- /dist/gamecontroller.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhallock/html5-virtual-game-controller/HEAD/dist/gamecontroller.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhallock/html5-virtual-game-controller/HEAD/gulpfile.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhallock/html5-virtual-game-controller/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhallock/html5-virtual-game-controller/HEAD/package.json -------------------------------------------------------------------------------- /src/gamecontroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhallock/html5-virtual-game-controller/HEAD/src/gamecontroller.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinhallock/html5-virtual-game-controller/HEAD/tests/index.html --------------------------------------------------------------------------------