unity-atoms/Packages/Core/Runtime/Interfaces/IGetEvent.cs
Adam Ramberg 5d9f8dca71 WIP
2020-03-01 21:32:52 +01:00

7 lines
116 B
C#

namespace UnityAtoms
{
public interface IGetEvent
{
E GetEvent<E>() where E : AtomEventBase;
}
}