using System.Collections.Generic; using UnityEngine; public interface TreeNodeAttributes : Attributes { Either delete(string key); Either put(string key, GameObject value); TreeMap getAttributesAsRawMap(); IEnumerator getKeys(); }