Harrison
fa74bc9ae5
Created interfaces for input and output for better structure and easier testing.
8 lines
201 B
C#
8 lines
201 B
C#
namespace RecrownedGTK.Tools.CommandProcessor {
|
|
public interface IUserOutput
|
|
{
|
|
void Output(string output);
|
|
void WrappedOutput(string output);
|
|
void ClearOutput();
|
|
}
|
|
} |