Added simulator ToString impls (similar to records)

This commit is contained in:
Asriel Camora
2023-06-29 01:47:01 -07:00
parent 37950b557e
commit 875659e496
5 changed files with 17 additions and 0 deletions
+5
View File
@@ -39,6 +39,11 @@ public class Simulator
State = state;
}
public void SetState(SimulationState state)
{
State = state;
}
public (ActionResponse Response, SimulationState NewState) Execute(SimulationState state, ActionType action)
{
State = state;