17 lines
421 B
C#
17 lines
421 B
C#
using System;
|
|
using static System.Console;
|
|
|
|
namespace ProtosXdigitalDemo
|
|
{
|
|
internal static class ConsoleSetup
|
|
{
|
|
public static void ApplyDefaultAppearance()
|
|
{
|
|
WindowUtility.SetAppearanceOptions();
|
|
WindowUtility.MoveWindowToCenter();
|
|
BackgroundColor = ConsoleColor.DarkBlue;
|
|
ForegroundColor = ConsoleColor.White;
|
|
Clear();
|
|
}
|
|
}
|
|
} |