EDBGS/EliteBGS/LogGenerator/LogFormatter.cs
Florian Stinglmayr 5120c7991f implement a summary line
For Pony's bot, implement a summary line that just shows the highlights of the log
2023-02-23 21:44:55 +01:00

7 lines
165 B
C#

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