namespace StardewModdingAPI.Framework.PerformanceCounter
{
/// The context for an alert.
internal struct AlertContext
{
/// The source which triggered the alert.
public readonly string Source;
/// The elapsed milliseconds.
public readonly double Elapsed;
/// Creates a new alert context.
/// The source which triggered the alert.
/// The elapsed milliseconds.
public AlertContext(string source, double elapsed)
{
this.Source = source;
this.Elapsed = elapsed;
}
public override string ToString()
{
return $"{this.Source}: {this.Elapsed:F2}ms";
}
}
}