mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 12:03:36 +00:00
21 lines
458 B
JavaScript
21 lines
458 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2022 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Structs
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Events: require('./events'),
|
|
List: require('./List'),
|
|
Map: require('./Map'),
|
|
ProcessQueue: require('./ProcessQueue'),
|
|
RTree: require('./RTree'),
|
|
Set: require('./Set'),
|
|
Size: require('./Size')
|
|
|
|
};
|