{{title}}
3 |{{summary}}
4 |├── .gitignore
├── docs
├── img
│ ├── favicon.ico
│ ├── favicon.png
│ └── pnlogo.png
├── assets
│ ├── images
│ │ ├── favicon.ico
│ │ └── icons
│ │ │ ├── github-1da075986e.svg
│ │ │ ├── gitlab-5ad3f9f9e5.svg
│ │ │ └── bitbucket-670608a71a.svg
│ └── javascripts
│ │ └── modernizr-56ade86843.js
├── mkdocs
│ └── js
│ │ ├── search-results-template.mustache
│ │ ├── search.js
│ │ ├── mustache.min.js
│ │ ├── lunr.min.js
│ │ ├── require.js
│ │ └── text.js
├── sitemap.xml
├── 404.html
├── notes
│ └── index.html
├── install
│ └── index.html
├── index.html
├── cli
│ └── index.html
├── config
│ └── index.html
└── project
│ └── index.html
├── tpl
├── game
│ ├── favicon.ico
│ ├── img
│ │ ├── logo.png
│ │ ├── pnlogo.png
│ │ └── preload.png
│ ├── js
│ │ ├── BootState.js
│ │ ├── GameState.js
│ │ ├── MenuState.js
│ │ ├── PreloadState.js
│ │ └── index.js
│ ├── index.html
│ └── css
│ │ └── index.css
└── pnkit.json
├── pnconfig.json
├── README.md
├── lib
├── paths.js
├── update.js
├── utils.js
├── bundle.js
├── build.js
└── watch.js
├── cli.js
├── LICENSE.md
└── package.json
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/docs/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/develephant/phaser-node-kit/HEAD/docs/img/favicon.ico
--------------------------------------------------------------------------------
/docs/img/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/develephant/phaser-node-kit/HEAD/docs/img/favicon.png
--------------------------------------------------------------------------------
/docs/img/pnlogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/develephant/phaser-node-kit/HEAD/docs/img/pnlogo.png
--------------------------------------------------------------------------------
/tpl/game/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/develephant/phaser-node-kit/HEAD/tpl/game/favicon.ico
--------------------------------------------------------------------------------
/tpl/game/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/develephant/phaser-node-kit/HEAD/tpl/game/img/logo.png
--------------------------------------------------------------------------------
/tpl/game/img/pnlogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/develephant/phaser-node-kit/HEAD/tpl/game/img/pnlogo.png
--------------------------------------------------------------------------------
/tpl/game/img/preload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/develephant/phaser-node-kit/HEAD/tpl/game/img/preload.png
--------------------------------------------------------------------------------
/docs/assets/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/develephant/phaser-node-kit/HEAD/docs/assets/images/favicon.ico
--------------------------------------------------------------------------------
/docs/mkdocs/js/search-results-template.mustache:
--------------------------------------------------------------------------------
1 | {{summary}}{{title}}
3 |