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

7 lines
122 B
C#

namespace UnityAtoms
{
public interface ISetEvent
{
void SetEvent<E>(E e) where E : AtomEventBase;
}
}