unity-atoms/Packages/Core/Runtime/Interfaces/IAtomCollection.cs

8 lines
160 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
namespace UnityAtoms
{
public interface IAtomCollection
{
void Add(string key, AtomBaseVariable value);
bool Remove(string key);
}
}