9 lines
131 B
C#
Raw Normal View History

2020-08-18 20:47:17 +02:00
namespace QSB.Events
{
public interface IQSBEvent
{
void SetupListener();
void CloseListener();
}
}