8 lines
No EOL
133 B
C#
8 lines
No EOL
133 B
C#
namespace PhoenixLib.Events
|
|
{
|
|
public interface IEventProcessor<in T>
|
|
where T : IEvent
|
|
{
|
|
void Handle(T e);
|
|
}
|
|
} |