More minor optimizations

This commit is contained in:
Asriel Camora
2023-06-21 06:16:57 -07:00
parent fc0ffc11f3
commit 0b2b80d6b5
10 changed files with 76 additions and 64 deletions
+5 -5
View File
@@ -2,12 +2,12 @@ using Craftimizer.Simulator.Actions;
namespace Craftimizer.Simulator;
public record struct ActionStates
public struct ActionStates
{
public byte TouchComboIdx { get; set; }
public byte CarefulObservationCount { get; set; }
public bool UsedHeartAndSoul { get; set; }
public bool Observed { get; set; }
public byte TouchComboIdx;
public byte CarefulObservationCount;
public bool UsedHeartAndSoul;
public bool Observed;
public void MutateState(ActionType action)
{