mirror of
https://github.com/XFox111/Shelldon.git
synced 2026-04-22 07:08:00 +03:00
10 lines
215 B
C#
10 lines
215 B
C#
namespace Shelldon.Help;
|
|
|
|
public class CommandHelpPreFormattedText(string text) : CommandHelpElement
|
|
{
|
|
public string Text { get; } = text;
|
|
|
|
public override string[] GetLines(int maxWidth) =>
|
|
Text.Split('\n');
|
|
}
|