Add a quick message to the console after startup

This commit is contained in:
CreepyCrafter24 2020-04-07 21:05:36 +02:00
parent 92de5aa2d3
commit f6975f68b1
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,8 @@ namespace cashew
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Console.Title = "The Cashew Project - Native Shell";
Console.Title = "The Cashew Project - Native Shell (do not close)";
Console.WriteLine("Welcome to Cashew. Your programs output will be redirected here");
Application.Run(new MainForm());
}
}