mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 11:33:28 +00:00
8 lines
117 B
JavaScript
8 lines
117 B
JavaScript
|
|
||
|
var MaxAdd = function (value, amount, max)
|
||
|
{
|
||
|
return Math.min(value + amount, max);
|
||
|
};
|
||
|
|
||
|
module.exports = MaxAdd;
|