mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
23 lines
610 B
C#
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();
|
|
}
|
|
}
|