Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
RandomGenerator.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12class RandomGenerator: Managed
13{
14 proto external void SetSeed(int seed);
23 proto external vector GenerateRandomPoint(array<float> polygon, vector bbMin, vector bbMax);
33 proto external vector GenerateRandomPointInRadius(float minRadius, float maxRadius, vector center, bool uniform = true);
35 proto external float RandFloat01();
40 proto external float RandFloatXY(float x, float y);
46 proto external float RandGaussFloat(float sigma, float mean);
61 proto external int RandInt(int min, int max);
76 proto external int RandIntInclusive(int min, int max);
77}
78