2020-12-14 16:24:52 +00:00

8 lines
109 B
C#

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