* cleaned up unused code, old forms, ProcessorAutomationController... * what's left of LogMe and ProcessorAutomationController should be moved eventually
10 lines
128 B
C#
10 lines
128 B
C#
using System;
|
|
|
|
namespace LibationWinForms.BookLiberation
|
|
{
|
|
public interface ILogForm
|
|
{
|
|
void WriteLine(string text);
|
|
}
|
|
}
|