mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 12:33:38 +00:00
15 lines
261 B
JavaScript
15 lines
261 B
JavaScript
|
// These are the global managers, available on the Game instance,
|
||
|
// that are installed into Scene.Systems as local properties.
|
||
|
|
||
|
var GlobalPlugins = [
|
||
|
|
||
|
'anims',
|
||
|
'cache',
|
||
|
'registry',
|
||
|
'sound',
|
||
|
'textures'
|
||
|
|
||
|
];
|
||
|
|
||
|
module.exports = GlobalPlugins;
|