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.
Lemonade/Lemonade/Program.cs

17 lines
449 B
C#
Raw Normal View History

2020-06-12 20:02:04 +02:00
using System;
namespace Lemonade
{
2020-06-12 20:16:11 +02:00
internal class Program
2020-06-12 20:02:04 +02:00
{
2020-06-12 20:16:11 +02:00
private static void Main(string[] args)
2020-06-12 20:02:04 +02:00
{
2020-06-12 20:02:39 +02:00
Console.BackgroundColor = ConsoleColor.Black;
Console.ForegroundColor = ConsoleColor.White;
Settings settings = new Settings();
ScreenManager screenManager = new ScreenManager(settings);
screenManager.Run();
Console.ResetColor();
2020-06-12 20:02:04 +02:00
}
}
2020-06-12 20:02:39 +02:00
}