mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
21 lines
355 B
C#
21 lines
355 B
C#
namespace Robust.Server.Console
|
|
{
|
|
internal sealed class SystemConsoleManagerDummy : ISystemConsoleManager
|
|
{
|
|
public void UpdateInput()
|
|
{
|
|
// Nada.
|
|
}
|
|
|
|
public void Print(string text)
|
|
{
|
|
// Nada.
|
|
}
|
|
|
|
public void UpdateTick()
|
|
{
|
|
// Nada.
|
|
}
|
|
}
|
|
}
|