mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
26 lines
723 B
C#
26 lines
723 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Robust.Shared.Console;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Robust.Client.Console
|
|
{
|
|
[NotContentImplementable]
|
|
public interface IClientConsoleHost : IConsoleHost, IDisposable
|
|
{
|
|
/// <summary>
|
|
/// Initializes the console into a useable state.
|
|
/// </summary>
|
|
void Initialize();
|
|
|
|
event EventHandler<AddStringArgs> AddString;
|
|
event EventHandler<AddFormattedMessageArgs> AddFormatted;
|
|
|
|
void AddFormattedLine(FormattedMessage message);
|
|
|
|
Task<CompletionResult> GetCompletions(List<string> args, string argStr, CancellationToken cancel);
|
|
}
|
|
}
|