mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 20:13:35 +00:00
14 lines
261 B
JavaScript
14 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;
|