EDBGS/Avalonia.EliteBGS/LogGenerator/LogFormatter.cs

7 lines
165 B
C#
Raw Normal View History

namespace EliteBGS.LogGenerator;
public interface LogFormatter {
string GenerateLog(Objective objective);
string GenerateSummary(Objective objective);
}