2020-03-01 20:26:06 -05:00
|
|
|
namespace UnityAtoms
|
|
|
|
{
|
2020-03-21 17:45:39 -04:00
|
|
|
/// <summary>
|
|
|
|
/// Interface for Atom Collections.
|
|
|
|
/// </summary>
|
2020-03-01 20:26:06 -05:00
|
|
|
public interface IAtomCollection
|
|
|
|
{
|
|
|
|
void Add(string key, AtomBaseVariable value);
|
|
|
|
bool Remove(string key);
|
|
|
|
}
|
|
|
|
}
|