forked from mirror/DotRecast
24 lines
412 B
C#
24 lines
412 B
C#
|
using System;
|
|||
|
|
|||
|
namespace DotRecast.Core
|
|||
|
{
|
|||
|
public class FRand
|
|||
|
{
|
|||
|
private readonly Random r;
|
|||
|
|
|||
|
public FRand()
|
|||
|
{
|
|||
|
r = new Random();
|
|||
|
}
|
|||
|
|
|||
|
public FRand(long seed)
|
|||
|
{
|
|||
|
r = new Random((int)seed); // TODO : 랜덤 시드 확인 필요
|
|||
|
}
|
|||
|
|
|||
|
public float frand()
|
|||
|
{
|
|||
|
return (float)r.NextDouble();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|