DotRecastNetSim/src/DotRecast.Core/IRcRand.cs

9 lines
148 B
C#

namespace DotRecast.Core
{
public interface IRcRand
{
float Next();
double NextDouble();
int NextInt32();
}
}