7 lines
168 B
C#
7 lines
168 B
C#
|
namespace Geekbot.net.Lib.RandomNumberGenerator
|
||
|
{
|
||
|
public interface IRandomNumberGenerator
|
||
|
{
|
||
|
int Next(int minValue, int maxExclusiveValue);
|
||
|
}
|
||
|
}
|