コード例 #1
0
ファイル: Server.cs プロジェクト: Bart97/BeemuSharp
        public void AddClient(IClient client)
        {
            lock (clients)
            {
                client.SetId(GenerateClientID());
                clients.Add(client.Id, client);

                Program.Logger.LogInfo(String.Format("New client: {0} ({1})", client.Address, client.Id));
            }
        }