unity-atoms/Packages/Core/Runtime/Interfaces/IGetEvent.cs

10 lines
193 B
C#
Raw Normal View History

2020-03-01 15:32:52 -05:00
namespace UnityAtoms
{
2020-03-21 17:45:39 -04:00
/// <summary>
/// Interface for getting an event.
/// </summary>
2020-03-01 15:32:52 -05:00
public interface IGetEvent
{
E GetEvent<E>() where E : AtomEventBase;
}
}