sharp-chat/SharpChatCommon/Events/IChatEventHandler.cs

6 lines
127 B
C#
Raw Normal View History

2024-05-24 03:44:20 +00:00
namespace SharpChat.Events {
public interface IChatEventHandler {
void HandleEvent(ChatEventInfo info);
}
}