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