mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-26 05:02:50 +08:00

Also refactors the code quite a bit, to make it a bit more easier to add features like this in the future. Closes #75
11 lines
252 B
C#
11 lines
252 B
C#
namespace Spectre.Console.Internal
|
|
{
|
|
internal static class Constants
|
|
{
|
|
public const int DefaultBufferWidth = 80;
|
|
public const int DefaultBufferHeight = 9001;
|
|
|
|
public const string EmptyLink = "https://emptylink";
|
|
}
|
|
}
|