Files
CypherCore/Source/BNetServer/Managers/Global.cs
T
2020-07-12 00:06:43 -04:00

13 lines
502 B
C#

// Copyright (c) CypherCore <http://github.com/CypherCore> All rights reserved.
// Licensed under the GNU GENERAL PUBLIC LICENSE. See LICENSE file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.Text;
using BNetServer;
public static class Global
{
public static RealmManager RealmMgr { get { return RealmManager.Instance; } }
public static LoginServiceManager LoginServiceMgr { get { return LoginServiceManager.Instance; } }
}