mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
17 lines
379 B
C#
17 lines
379 B
C#
using Robust.Shared.Console;
|
|
|
|
namespace Robust.Server.Console
|
|
{
|
|
/// <summary>
|
|
/// The server console shell that executes commands.
|
|
/// </summary>
|
|
[NotContentImplementable]
|
|
public interface IServerConsoleHost : IConsoleHost
|
|
{
|
|
/// <summary>
|
|
/// Initializes the ConsoleShell service.
|
|
/// </summary>
|
|
void Initialize();
|
|
}
|
|
}
|