LKCamelot.model.PlayerHandler.newPlayerClient C# (CSharp) Method

newPlayerClient() public method

public newPlayerClient ( IOClient client ) : void
client LKCamelot.io.IOClient
return void
        public void newPlayerClient(IOClient client)
        {
            try
            {
                client.handler = this;
            }
            catch (Exception e)
            {
                Console.WriteLine("E at newplayerclient", e.ToString());
            }

               //     add.TryAdd(client, null);
            Console.WriteLine("Players Online: " + add.Count);
        }