mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
14 lines
263 B
C#
14 lines
263 B
C#
namespace Robust.Client.Console
|
|
{
|
|
/// <summary>
|
|
/// Client manager for server side scripting.
|
|
/// </summary>
|
|
public interface IScriptClient
|
|
{
|
|
void Initialize();
|
|
|
|
bool CanScript { get; }
|
|
void StartSession();
|
|
}
|
|
}
|