1
0

Added Enchantment-Slot-Level generating

This commit is contained in:
daniel0916
2014-04-07 19:52:35 +02:00
parent 7735a1104f
commit af566d5a79
3 changed files with 32 additions and 9 deletions

View File

@@ -172,3 +172,13 @@ float cFastRandom::NextFloat(float a_Range, int a_Salt)
int cFastRandom::GenerateRandomInteger(int a_Begin, int a_End)
{
cFastRandom Random;
return Random.NextInt(a_End - a_Begin + 1) + a_Begin;
}