recrownedgtk/RecrownedGTK.Tools/CommandProcessor/IUserOutput.cs
Harrison fa74bc9ae5 Switched to dependency injection for console use.
Created interfaces for input and output for better structure and easier testing.
2020-02-23 20:51:39 -05:00

8 lines
201 B
C#

namespace RecrownedGTK.Tools.CommandProcessor {
public interface IUserOutput
{
void Output(string output);
void WrappedOutput(string output);
void ClearOutput();
}
}