unity-atoms/Packages/Core/Runtime/Interfaces/IGetEvent.cs
2020-03-21 22:45:39 +01:00

10 lines
193 B
C#

namespace UnityAtoms
{
/// <summary>
/// Interface for getting an event.
/// </summary>
public interface IGetEvent
{
E GetEvent<E>() where E : AtomEventBase;
}
}