├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example └── index.js ├── lib ├── hrtime-polyfill.js ├── mousewheel-polyfill.js └── raf-polyfill.js ├── package.json └── shell.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/game-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/game-shell/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/game-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/game-shell/HEAD/README.md -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/game-shell/HEAD/example/index.js -------------------------------------------------------------------------------- /lib/hrtime-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/game-shell/HEAD/lib/hrtime-polyfill.js -------------------------------------------------------------------------------- /lib/mousewheel-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/game-shell/HEAD/lib/mousewheel-polyfill.js -------------------------------------------------------------------------------- /lib/raf-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/game-shell/HEAD/lib/raf-polyfill.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/game-shell/HEAD/package.json -------------------------------------------------------------------------------- /shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/game-shell/HEAD/shell.js --------------------------------------------------------------------------------