23 lines
598 B
C#
23 lines
598 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Swan {
|
|||
|
/// <summary>
|
|||
|
/// A console terminal helper to create nicer output and receive input from the user
|
|||
|
/// This class is thread-safe :).
|
|||
|
/// </summary>
|
|||
|
public static partial class Terminal {
|
|||
|
/// <summary>
|
|||
|
/// Terminal global settings.
|
|||
|
/// </summary>
|
|||
|
public static class Settings {
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the default output color.
|
|||
|
/// </summary>
|
|||
|
/// <value>
|
|||
|
/// The default color.
|
|||
|
/// </value>
|
|||
|
public static ConsoleColor DefaultColor { get; set; } = Console.ForegroundColor;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|