mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 21:59:16 +00:00
17 lines
317 B
C#
17 lines
317 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QSB.Events
|
|
{
|
|
public abstract class BaseQSBEvent : IQSBEvent
|
|
{
|
|
protected static int _msgType = 0;
|
|
|
|
public abstract void SetupListener();
|
|
public abstract void CloseListener();
|
|
}
|
|
}
|