24 lines
609 B
C#
24 lines
609 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SharedLibraryCore.Events
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// represents the state of a game event for event processing
|
|||
|
/// </summary>
|
|||
|
public class GameEventArgs : System.ComponentModel.AsyncCompletedEventArgs
|
|||
|
{
|
|||
|
|
|||
|
public GameEventArgs(Exception error, bool cancelled, GameEvent userState) : base(error, cancelled, userState)
|
|||
|
{
|
|||
|
Event = userState;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Game event that occured on a server
|
|||
|
/// </summary>
|
|||
|
public GameEvent Event { get; }
|
|||
|
}
|
|||
|
}
|