10 lines
193 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 getting an event.
/// </summary>
2020-03-01 21:32:52 +01:00
public interface IGetEvent
{
E GetEvent<E>() where E : AtomEventBase;
}
}