8 lines
160 B
C#
Raw Normal View History

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