Code runs

This commit is contained in:
watsonb8
2019-11-02 15:47:41 -04:00
parent a3937e78da
commit 9a34e31f9c
7 changed files with 471 additions and 196 deletions

View File

@@ -0,0 +1,16 @@
using System;
using Aurora.Proto.Events;
namespace Aurora.Services.ClientService
{
public delegate void EventReceivedEventHandler(object sender, EventReceivedEventArgs e);
public class EventReceivedEventArgs
{
public BaseEvent BaseEvent { get; private set; }
public EventReceivedEventArgs(BaseEvent e)
{
BaseEvent = e;
}
}
}