Robert McRackan 577145096d * GridEntry.DownloadBook is no longer called. it was the only one calling UpdateLiberatedStatus(true) or using DownloadInProgress flag
* cleaned up unused code, old forms, ProcessorAutomationController...
* what's left of LogMe and ProcessorAutomationController should be moved eventually
2022-05-16 14:44:17 -04:00

10 lines
128 B
C#

using System;
namespace LibationWinForms.BookLiberation
{
public interface ILogForm
{
void WriteLine(string text);
}
}