// Copyright © 2017-2018 Atomic Software, LLC. All Rights Reserved. // See LICENSE.md for full license information. using Atom.Core.Diagnostics; using Atom.Core.Game; using Atom.Core.Networking; namespace Atom.WorldManagerServer.Logic { internal static class ClientLogic { internal static void Logout(Client client, LogoutType logoutType) { Log.Info($"Client '{client.Account.Username}' logged out"); } } }