Remove all unncessesary data instantiations

This commit is contained in:
Asriel Camora
2023-06-21 10:07:16 -07:00
parent 1dda7496e9
commit 11b4b7f6d9
4 changed files with 23 additions and 28 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ namespace Craftimizer.Solver.Crafty;
public class ArenaNode<T> where T : struct
{
public readonly T State;
public T State;
public readonly List<ArenaNode<T>> Children;
public readonly ArenaNode<T>? Parent;