mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 12:33:38 +00:00
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
// These properties get injected into the State Factory Plugin
|
|
// The key is the factory reference, the value is the Game Object that is created
|
|
// These can be modified via the config object
|
|
|
|
var FactoryMap = {
|
|
|
|
bitmapText: 'game',
|
|
|
|
|
|
};
|
|
|
|
module.exports = FactoryMap;
|