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();
|
||
|
}
|
||
|
}
|