unity-atoms/Packages/Core/Runtime/Interfaces/IAtomCollection.cs
2020-03-21 22:45:39 +01:00

11 lines
237 B
C#

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