mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 20:43:26 +00:00
13 lines
275 B
JavaScript
13 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;
|