initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user