namespace UnityAtoms { /// /// Interface for setting an event. /// public interface ISetEvent { void SetEvent(E e) where E : AtomEventBase; } }