using System.Collections.Generic;
namespace IdleSpectator;
///
/// Compatibility facade over . Prefer the catalog directly.
///
public static class WorldLogInterestTable
{
public static bool TryGetEventStrength(string assetId, out float eventStrength)
{
return WorldLogEventCatalog.TryGetEventStrength(assetId, out eventStrength);
}
public static string MakeLabel(WorldLogMessage message)
{
return WorldLogEventCatalog.MakeLabel(message);
}
public static IEnumerable AuthoredIds => WorldLogEventCatalog.AuthoredIds;
}