Simulator changes

This commit is contained in:
Asriel Camora
2023-06-25 01:01:47 -07:00
parent 62efffa3e7
commit 866e30a5bc
4 changed files with 21 additions and 8 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace Craftimizer.Simulator;
public class SimulatorNoRandom : Simulator
{
public SimulatorNoRandom(SimulationState state) : base(state)
{
}
public sealed override bool RollSuccessRaw(float successRate) => successRate == 1;
public sealed override void StepCondition() { }
}