using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu(fileName = "BlocksGraph", menuName = "BlocksGraph", order = 0)] public class BlocksGraph : ScriptableObject { private Dictionary> graph = new Dictionary>(); private BlockNode root; }