15 lines
254 B
C#
15 lines
254 B
C#
using System;
|
|
using Crysome.Common.Network;
|
|
|
|
namespace Crysome.Server.Network;
|
|
|
|
public class ClientEventArgs : EventArgs
|
|
{
|
|
public CrysomeClient Client { get; set; }
|
|
|
|
public ClientEventArgs(CrysomeClient client)
|
|
{
|
|
Client = client;
|
|
}
|
|
}
|