2018-04-19 12:07:59 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2019-01-15 16:20:22 +00:00
|
|
|
* @copyright 2019 Photon Storm Ltd.
|
2018-04-19 12:07:59 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
var RETRO_FONT_CONST = require('./const');
|
|
|
|
var Extend = require('../../utils/object/Extend');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @namespace Phaser.GameObjects.RetroFont
|
|
|
|
* @since 3.6.0
|
|
|
|
*/
|
|
|
|
|
2018-04-19 12:57:33 +00:00
|
|
|
var RetroFont = { Parse: require('./ParseRetroFont') };
|
2018-04-19 12:07:59 +00:00
|
|
|
|
|
|
|
// Merge in the consts
|
|
|
|
RetroFont = Extend(false, RetroFont, RETRO_FONT_CONST);
|
|
|
|
|
|
|
|
module.exports = RetroFont;
|