5 lines
127 B
C#
5 lines
127 B
C#
namespace SharpChat.Events {
|
|
public interface IChatEventHandler {
|
|
void HandleEvent(ChatEventInfo info);
|
|
}
|
|
}
|