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

7 lines
122 B
C#
Raw Normal View History

2020-03-01 15:32:52 -05:00
namespace UnityAtoms
{
public interface ISetEvent
{
void SetEvent<E>(E e) where E : AtomEventBase;
}
}