mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-18 04:10:36 +00:00
1effae0bd3
i have no idea how i did this but it works
17 lines
385 B
C#
17 lines
385 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QSB.Events
|
|
{
|
|
public abstract class QSBEvent
|
|
{
|
|
public abstract EventType Type { get; }
|
|
|
|
public abstract void OnReceive(uint sender, object[] data);
|
|
public abstract void OnReceiveLocal(object[] data);
|
|
public abstract void SetupListener();
|
|
}
|
|
}
|