mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
9 lines
309 B
Plaintext
9 lines
309 B
Plaintext
|
module random;
|
||
|
|
||
|
native uint rand(); // Return a number between 0 and uint.max, inclusive
|
||
|
native float frand(); // Return a number between 0 and 1, inclusive
|
||
|
|
||
|
// Return a random number between a and b, inclusive. Allows negative
|
||
|
// numbers, and works with a>b, a<b and a==b
|
||
|
native int randInt(int a, int b);
|