10 lines
136 B
C#

namespace QSB.Events
{
public interface IQSBEvent
{
EventType Type { get; }
void SetupListener();
void CloseListener();
}
}