Hello, What are all the config keys for game.config, so I need to know How can I move engine folder to a general directory to be re-used for all games and in every game develop the modules tha I need.
I mean I, I would like get this structure:
.
├── README.md
├── assets
│ ├── Audios
│ └── Images
├── common
│ └── pandajs
│ └── engine
└── src
└── demo
├── game
│ ├── background.js
│ ├── board.js
│ ├── box.js
│ ├── frog.js
│ ├── index.js
│ ├── interactiveimage.js
│ ├── mainText.js
│ ├── step1.js
│ ├── step2.js
│ ├── step3.js
│ └── utils.js
├── index.html
└── settings.js