9 lines
114 B
C#
Raw Normal View History

2020-11-03 21:42:14 +00:00
namespace QSB.EventsCore
2020-08-18 20:47:17 +02:00
{
2020-12-02 21:23:01 +00:00
public interface IQSBEvent
{
void SetupListener();
void CloseListener();
}
2020-08-18 20:47:17 +02:00
}