namespace UnityAtoms { /// /// Interface for Atom Collections. /// public interface IAtomCollection { void Add(string key, AtomBaseVariable value); bool Remove(string key); } }