mirror of
https://github.com/parnic/advent-of-code-2024.git
synced 2025-06-16 20:40:14 -05:00
Day 1
This commit is contained in:
22
src/Util/Constants.cs
Normal file
22
src/Util/Constants.cs
Normal file
@ -0,0 +1,22 @@
|
||||
namespace aoc2024.Util;
|
||||
|
||||
public static class Constants
|
||||
{
|
||||
public const char SolidBlock = '█';
|
||||
public const char SolidSquare = '■';
|
||||
public const char SolidSmallSquare = '▪';
|
||||
|
||||
public const char BoxVert = '│';
|
||||
public const char BoxHorz = '─';
|
||||
public const char BoxCurveNE = '╰';
|
||||
public const char BoxCurveNW = '╯';
|
||||
public const char BoxCurveSW = '╮';
|
||||
public const char BoxCurveSE = '╭';
|
||||
|
||||
public const char BoxDoubleVert = '║';
|
||||
public const char BoxDoubleHorz = '═';
|
||||
public const char BoxDoubleNE = '╚';
|
||||
public const char BoxDoubleNW = '╝';
|
||||
public const char BoxDoubleSW = '╗';
|
||||
public const char BoxDoubleSE = '╔';
|
||||
}
|
Reference in New Issue
Block a user