Files
RobustToolbox/Robust.Server/Console/ISystemConsoleManager.cs

23 lines
610 B
C#

namespace Robust.Server.Console
{
/// <summary>
/// Wraps the system console.
/// </summary>
[NotContentImplementable]
public interface ISystemConsoleManager
{
/// <summary>
/// process input/output of the console. This needs to be called often.
/// </summary>
void UpdateInput();
/// <summary>
/// Prints <paramref name="text" /> to the system console.
/// </summary>
/// <param name="text">Text to write to the system console.</param>
void Print(string text);
void UpdateTick();
}
}