phaser/v3/src/math/Difference.js

7 lines
96 B
JavaScript
Raw Normal View History

var Difference = function (a, b)
{
return Math.abs(a - b);
};
module.exports = Difference;