8 lines
109 B
C#
Raw Normal View History

2020-12-14 16:24:52 +00:00
namespace QSB.Events
2020-08-18 20:47:17 +02:00
{
2020-12-02 21:23:01 +00:00
public interface IQSBEvent
{
void SetupListener();
void CloseListener();
}
2020-12-03 08:28:05 +00:00
}