Florian Stinglmayr
5120c7991f
For Pony's bot, implement a summary line that just shows the highlights of the log
7 lines
165 B
C#
7 lines
165 B
C#
namespace EliteBGS.LogGenerator;
|
|
|
|
public interface LogFormatter {
|
|
string GenerateLog(Objective objective);
|
|
string GenerateSummary(Objective objective);
|
|
}
|