21 lines
629 B
C#
21 lines
629 B
C#
using System.Collections.Generic;
|
|
|
|
namespace IdleSpectator;
|
|
|
|
/// <summary>
|
|
/// Compatibility facade over <see cref="WorldLogEventCatalog"/>. Prefer the catalog directly.
|
|
/// </summary>
|
|
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<string> AuthoredIds => WorldLogEventCatalog.AuthoredIds;
|
|
}
|