Add command-line switch

This commit is contained in:
Andrew Cooper
2022-07-24 16:36:48 +10:00
parent d1cf340e9f
commit 06386a6d5f
3 changed files with 14 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
namespace Cube;
internal class ZerosGenerator : IRandom
{
public float NextFloat() => 0;
public float PreviousFloat() => 0;
public void Reseed(int seed) { }
}