Difference between revisions of "Max"

From King Arthur's Gold Wiki
Jump to: navigation, search
(Created page with "<onlyinclude> Returns the larger of the two given numbers. </onlyinclude> This method has two variants - one for ints, the other for floats. <syntaxhighlight lang="cpp"> float M...")
(No difference)

Revision as of 17:58, 22 August 2012

Returns the larger of the two given numbers.


This method has two variants - one for ints, the other for floats.

float Max(float a, float b)
int Max(int a, int b)