mirror of
https://github.com/photonstorm/phaser
synced 2024-12-14 23:32:52 +00:00
17 lines
352 B
JavaScript
17 lines
352 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2019 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Cache
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
BaseCache: require('./BaseCache'),
|
|
CacheManager: require('./CacheManager'),
|
|
Events: require('./events')
|
|
|
|
};
|