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