CC#•Created by Mekasu0124 on 5/24/2023 in #help ✅ How to make program wait before executing next print line?
'''cs
Console.WriteLine("Press ESC to stop");
do {
while (! Console.KeyAvailable) {
// here you just wait with rest of game
}
} while (Console.ReadKey(true).Key != ConsoleKey.Escape);
'''