mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 15:16:33 -08:00
10 lines
173 B
C#
10 lines
173 B
C#
namespace Cube;
|
|
|
|
internal class ZerosGenerator : IRandom
|
|
{
|
|
public float NextFloat() => 0;
|
|
|
|
public float PreviousFloat() => 0;
|
|
|
|
public void Reseed(int seed) { }
|
|
} |