mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 18:32:45 +00:00
10 lines
136 B
C#
10 lines
136 B
C#
namespace QSB.Events
|
|
{
|
|
public interface IQSBEvent
|
|
{
|
|
EventType Type { get; }
|
|
|
|
void SetupListener();
|
|
void CloseListener();
|
|
}
|
|
} |