phaser/src/tilemaps/parsers/index.js

21 lines
482 B
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2019-01-15 16:20:22 +00:00
* @copyright 2019 Photon Storm Ltd.
2018-02-12 16:01:20 +00:00
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
2018-02-09 18:44:16 +00:00
/**
* @namespace Phaser.Tilemaps.Parsers
*/
module.exports = {
Parse: require('./Parse'),
Parse2DArray: require('./Parse2DArray'),
ParseCSV: require('./ParseCSV'),
2018-02-10 01:50:48 +00:00
Impact: require('./impact/ParseWeltmeister'),
Tiled: require('./tiled/ParseJSONTiled')
2018-02-09 18:44:16 +00:00
};