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/PlayerJoinedEventArgs.cs
2015-01-01 19:49:53 -07:00

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;
}
}
}