10 lines
199 B
C#
Raw Normal View History

2020-03-01 21:32:52 +01:00
namespace UnityAtoms
{
2020-03-21 22:45:39 +01:00
/// <summary>
/// Interface for setting an event.
/// </summary>
2020-03-01 21:32:52 +01:00
public interface ISetEvent
{
void SetEvent<E>(E e) where E : AtomEventBase;
}
}