sharp-chat/SharpChat.Common/Events/IEventDispatcher.cs
2022-08-30 17:05:29 +02:00

8 lines
244 B
C#

namespace SharpChat.Events {
public interface IEventDispatcher {
void AddEventHandler(IEventHandler handler);
void RemoveEventHandler(IEventHandler handler);
void DispatchEvent(object sender, IEvent evt);
}
}