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

8 lines
No EOL
133 B
C#

namespace PhoenixLib.Events
{
public interface IEventProcessor<in T>
where T : IEvent
{
void Handle(T e);
}
}