UNPKG

phaser

Version:

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

22 lines (17 loc) 604 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2013-2023 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * @namespace Phaser.Math.Distance */ module.exports = { Between: require('./DistanceBetween'), BetweenPoints: require('./DistanceBetweenPoints'), BetweenPointsSquared: require('./DistanceBetweenPointsSquared'), Chebyshev: require('./DistanceChebyshev'), Power: require('./DistancePower'), Snake: require('./DistanceSnake'), Squared: require('./DistanceSquared') };