Code runs
This commit is contained in:
16
Aurora/Services/ClientService/EventReceivedEvent.cs
Normal file
16
Aurora/Services/ClientService/EventReceivedEvent.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user