Exemple #1
0
        //Wiadomosc po zakonczeniu rozgrywki
        public static void StatkiTytułKoniec()
        {
            Console.ForegroundColor = ConsoleColor.DarkRed;

            Console.Title = "Statki";
            Console.WriteLine();
            string statkiKoncowaGrafika =
                @"
                       
                        ##    ##  #######  ##    ## #### ########  ######      ######   ########  ##    ## 
                        ##   ##  ##     ## ###   ##  ##  ##       ##    ##    ##    ##  ##     ##  ##  ##  
                        ##  ##   ##     ## ####  ##  ##  ##       ##          ##        ##     ##   ####   
                        #####    ##     ## ## ## ##  ##  ######   ##          ##   #### ########     ##    
                        ##  ##   ##     ## ##  ####  ##  ##       ##          ##    ##  ##   ##      ##    
                        ##   ##  ##     ## ##   ###  ##  ##       ##    ##    ##    ##  ##    ##     ##    
                        ##    ##  #######  ##    ## #### ########  ######      ######   ##     ##    ##  
                        
                                                                                          
   
                ";

            maszynaDoPisania(statkiKoncowaGrafika);
            Console.WriteLine();
            Console.ForegroundColor = ConsoleColor.Yellow;
            SrodkowanieTeksu.SrodkowanieTekstu("Nacisnij enter aby kontynuowac...");
            Console.ReadKey();
            Console.Clear();
        }
Exemple #2
0
        // Wiadomosc powitalna
        public static void StatkiTytułStart()
        {
            Console.ForegroundColor = ConsoleColor.DarkBlue;

            Console.Title = "Statki WSEI 2020";
            Console.WriteLine();
            string statkiStartowaGrafika =
                @" 
                         ######  ########    ###    ######## ##    ##  #### 
                        ##    ##    ##      ## ##      ##    ##   ##    ##  
                        ##          ##     ##   ##     ##    ##  ##     ##  
                         ######     ##    ##     ##    ##    #####      ##  
                              ##    ##    #########    ##    ##  ##     ##  
                        ##    ##    ##    ##     ##    ##    ##   ##    ##  
                         ######     ##    ##     ##    ##    ##    ##  ####   
                ";

            Console.WriteLine(statkiStartowaGrafika);
            Console.WriteLine();
            Console.ForegroundColor = ConsoleColor.Yellow;
            SrodkowanieTeksu.SrodkowanieTekstu("Nacisnij enter aby kontynuowac...");
            Console.ReadKey();
            Console.Clear();
        }