Anti-Cheat Toolkit
2024.0.0
Multi-purpose anti-cheat solution for Unity Engine
|
Static Public Member Functions | |
static int | Next (int minInclusive, int maxExclusive) |
static long | NextLong (long minInclusive, long maxExclusive) |
static void | NextBytes (byte[] buffer) |
static void | NextChars (char[] buffer) |
Random utility which can be used from background threads.
|
inlinestatic |
Generates random int
number within specified range.
minInclusive | Minimal value, inclusive. |
maxExclusive | Maximum value, exclusive. |
|
inlinestatic |
Generates random long
number within specified range.
minInclusive | Minimal value, inclusive. |
maxExclusive | Maximum value, exclusive. |
|
inlinestatic |
Fills passed buffer with random bytes.
buffer | Buffer filled with random bytes. |
|
inlinestatic |
Fills passed buffer with random char
values.
buffer | Buffer filled with random char values. |