10 lines
122 B
C#
10 lines
122 B
C#
namespace Voxus.Random
|
|
{
|
|
internal interface RandomGeneratorInterface
|
|
{
|
|
float Get();
|
|
|
|
void SetSeed(float seed);
|
|
}
|
|
}
|