mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 12:03:36 +00:00
20 lines
506 B
JavaScript
20 lines
506 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2020 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
var RETRO_FONT_CONST = require('./const');
|
|
var Extend = require('../../utils/object/Extend');
|
|
|
|
/**
|
|
* @namespace Phaser.GameObjects.RetroFont
|
|
* @since 3.6.0
|
|
*/
|
|
|
|
var RetroFont = { Parse: require('./ParseRetroFont') };
|
|
|
|
// Merge in the consts
|
|
RetroFont = Extend(false, RetroFont, RETRO_FONT_CONST);
|
|
|
|
module.exports = RetroFont;
|