2020-03-21 22:45:39 +01:00

10 lines
199 B
C#

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