HISP/Horse Isle Server/HorseIsleServer/Security/RandomID.cs
2021-01-28 23:27:58 +13:00

22 lines
435 B
C#
Executable file

using System;
namespace HISP.Security
{
class RandomID
{
private static int prevId = 0;
public static int NextRandomId(int randomId=-1)
{
int rndmId = 0;
if (randomId == -1)
rndmId = prevId+1;
else
rndmId = randomId;
if (rndmId >= prevId)
prevId = rndmId;
return rndmId;
}
}
}