mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
22 lines
580 B
C#
22 lines
580 B
C#
namespace Robust.Server.Console
|
|
{
|
|
/// <summary>
|
|
/// Wraps the system console.
|
|
/// </summary>
|
|
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();
|
|
}
|
|
}
|