15 lines
306 B
C#
15 lines
306 B
C#
using System;
|
|
using TrueCraft.API.Networking;
|
|
|
|
namespace TrueCraft.API.Server
|
|
{
|
|
public class PlayerJoinedEventArgs : EventArgs
|
|
{
|
|
public IRemoteClient Client { get; set; }
|
|
|
|
public PlayerJoinedEventArgs(IRemoteClient client)
|
|
{
|
|
Client = client;
|
|
}
|
|
}
|
|
} |