mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
Add command-line switch
This commit is contained in:
10
30_Cube/csharp/ZerosGenerator.cs
Normal file
10
30_Cube/csharp/ZerosGenerator.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Cube;
|
||||
|
||||
internal class ZerosGenerator : IRandom
|
||||
{
|
||||
public float NextFloat() => 0;
|
||||
|
||||
public float PreviousFloat() => 0;
|
||||
|
||||
public void Reseed(int seed) { }
|
||||
}
|
||||
Reference in New Issue
Block a user