Files
se-launcher/CringePlugins/Splash/ProgressInfo.cs
2024-10-22 21:40:32 +07:00

9 lines
352 B
C#

namespace CringePlugins.Splash;
public record ProgressInfo(string Text)
{
public static implicit operator ProgressInfo(string s) => new(s);
public static implicit operator ProgressInfo((string, float) s) => new PercentProgressInfo(s.Item1, s.Item2);
}
public record PercentProgressInfo(string Text, float Percent = 0) : ProgressInfo(Text);