7 lines
116 B
C#
Raw Normal View History

2020-03-01 21:32:52 +01:00
namespace UnityAtoms
{
public interface IGetEvent
{
E GetEvent<E>() where E : AtomEventBase;
}
}