//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.GameLogic;
using MUnique.OpenMU.GameLogic.PlayerActions.Trade;
using MUnique.OpenMU.Pathfinding;
///
/// Provides information about the available metrics of this project.
///
public static class Metrics
{
///
/// Gets all available meters of this project.
///
public static IEnumerable Meters
{
get
{
yield return GameContext.MeterName;
yield return BaseTradeAction.MeterName;
yield return PathFinder.MeterName;
}
}
}