UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

25 lines (17 loc) 484 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ var CONST = require('./const'); var Extend = require('../../utils/object/Extend'); /** * @namespace Phaser.Display.Align */ var Align = { In: require('./in'), To: require('./to') }; // Merge in the consts Align = Extend(false, Align, CONST); module.exports = Align;