This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.API/Server/PlayerJoinedQuitEventArgs.cs
2015-06-02 20:31:43 -06:00

15 lines
314 B
C#

using System;
using TrueCraft.API.Networking;
namespace TrueCraft.API.Server
{
public class PlayerJoinedQuitEventArgs : EventArgs
{
public IRemoteClient Client { get; set; }
public PlayerJoinedQuitEventArgs(IRemoteClient client)
{
Client = client;
}
}
}