mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 10:07:15 +02: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();
|
|
}
|
|
}
|