blob: 69f6a1830ead3088ef7c3b9a548ea4835b2f259e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShiftOS.Engine
{
public static class ConsoleEx
{
static ConsoleEx()
{
ForegroundColor = ConsoleColor.White;
BackgroundColor = ConsoleColor.Black;
Bold = false;
Italic = false;
Underline = false;
}
public static ConsoleColor ForegroundColor { get; set; }
public static ConsoleColor BackgroundColor { get; set; }
public static bool Bold { get; set; }
public static bool Italic { get; set; }
public static bool Underline { get; set; }
}
}
|