diff options
author | daniel0916 <theschokolps@gmail.com> | 2014-04-07 19:52:35 +0200 |
---|---|---|
committer | daniel0916 <theschokolps@gmail.com> | 2014-04-07 19:52:35 +0200 |
commit | af566d5a79134842854bea78de577676d507949f (patch) | |
tree | 8ab441598a88aaea3163b19ace2b341471e8e273 /src/FastRandom.h | |
parent | added EnchantItemPacket to older Protocols (diff) | |
download | cuberite-af566d5a79134842854bea78de577676d507949f.tar cuberite-af566d5a79134842854bea78de577676d507949f.tar.gz cuberite-af566d5a79134842854bea78de577676d507949f.tar.bz2 cuberite-af566d5a79134842854bea78de577676d507949f.tar.lz cuberite-af566d5a79134842854bea78de577676d507949f.tar.xz cuberite-af566d5a79134842854bea78de577676d507949f.tar.zst cuberite-af566d5a79134842854bea78de577676d507949f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/FastRandom.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/FastRandom.h b/src/FastRandom.h index bf70822cf..1c20fa39f 100644 --- a/src/FastRandom.h +++ b/src/FastRandom.h @@ -43,6 +43,9 @@ public: /// Returns a random float in the range [0 .. a_Range]; a_Range must be less than 1M; a_Salt is additional source of randomness float NextFloat(float a_Range, int a_Salt); + + /// Returns a random int in the range [a_Begin .. a_End] + int GenerateRandomInteger(int a_Begin, int a_End); protected: int m_Seed; |