This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/Misc/SpecialChars.cs
2020-05-23 15:32:29 +02:00

13 lines
288 B
C#

namespace CC_Functions.Misc
{
/// <summary>
/// Characters for use in CC-Functions.CommandLine
/// </summary>
public static class SpecialChars
{
/// <summary>
/// The space character
/// </summary>
public const char Empty = ' ';
}
}