├── .gitignore ├── LICENSE ├── README.md ├── dist ├── BasePlugin.js └── BasePlugin.min.js ├── package.json ├── src └── main.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/plugin-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/plugin-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/plugin-template/HEAD/README.md -------------------------------------------------------------------------------- /dist/BasePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/plugin-template/HEAD/dist/BasePlugin.js -------------------------------------------------------------------------------- /dist/BasePlugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/plugin-template/HEAD/dist/BasePlugin.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/plugin-template/HEAD/package.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/plugin-template/HEAD/src/main.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/plugin-template/HEAD/webpack.config.js --------------------------------------------------------------------------------