mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 10:12:50 +08:00
20 lines
504 B
C#
20 lines
504 B
C#
using Spectre.Console.Rendering;
|
|
|
|
namespace Spectre.Console
|
|
{
|
|
/// <summary>
|
|
/// A console capable of writing ANSI escape sequences.
|
|
/// </summary>
|
|
public static partial class AnsiConsole
|
|
{
|
|
/// <summary>
|
|
/// Renders the specified object to the console.
|
|
/// </summary>
|
|
/// <param name="renderable">The object to render.</param>
|
|
public static void Render(IRenderable renderable)
|
|
{
|
|
Console.Render(renderable);
|
|
}
|
|
}
|
|
}
|