2020-12-03 08:28:05 +00:00

9 lines
114 B
C#

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