unity-atoms/Source/Listeners/IAtomListener.cs
2019-09-25 21:05:06 +02:00

13 lines
216 B
C#

namespace UnityAtoms
{
public interface IAtomListener<T>
{
void OnEventRaised(T item);
}
public interface IAtomListener<T1, T2>
{
void OnEventRaised(T1 first, T2 second);
}
}