mirror of
https://github.com/photonstorm/phaser
synced 2024-12-26 21:13:41 +00:00
21 lines
489 B
JavaScript
21 lines
489 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2020 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Tilemaps.Parsers
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
FromOrientationString: require('./FromOrientationString'),
|
|
Parse: require('./Parse'),
|
|
Parse2DArray: require('./Parse2DArray'),
|
|
ParseCSV: require('./ParseCSV'),
|
|
|
|
Impact: require('./impact/'),
|
|
Tiled: require('./tiled/')
|
|
|
|
};
|