8 lines
No EOL
177 B
C#
8 lines
No EOL
177 B
C#
namespace PhoenixLib.Events
|
|
{
|
|
public interface IEventProcessorPipeline
|
|
{
|
|
void ProcessEvent(IEvent e);
|
|
void ProcessEvent<T>(T e) where T : IEvent;
|
|
}
|
|
} |