server-master/srcs/PhoenixLib.Events/IEventProcessorPipeline.cs
2026-02-10 18:21:30 +01:00

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;
}
}