Advertisement
drakon-firestone

Untitled

Jan 6th, 2024
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace BrickGame
  8. {
  9. internal class Program
  10. {
  11. static string[] plansza;
  12. const string GRACZ = "^";
  13.  
  14.  
  15. static void Main(string[] args)
  16. {
  17. int pozycjaGracza = 1; // |0 1 2|
  18. Random generatorLosowy = new Random();
  19. bool czyUderzony = false;
  20.  
  21. NowaPlansza(10);
  22. UstawGracza(pozycjaGracza);
  23. PokazPlansze();
  24.  
  25.  
  26.  
  27.  
  28. Console.ReadKey();
  29. }
  30.  
  31.  
  32. static void NowaPlansza(int rozmiarPlanszy)
  33. {
  34. plansza = new string[rozmiarPlanszy];
  35. for (int i = 0; i < plansza.Length; i++)
  36. {
  37. plansza[i] = "";
  38. }
  39. }
  40.  
  41. static void UstawGracza(int pozycja)
  42. {
  43. string linia = " "; // 3 spacje!!!
  44. linia = linia.Insert(pozycja, GRACZ);
  45. plansza[plansza.Length-1] = linia;
  46. // nasza linia z graczem jest ostantim elementem planszy
  47. }
  48.  
  49. static void PokazPlansze()
  50. {
  51. Console.Clear();
  52. foreach (string linia in plansza)
  53. {
  54. Console.WriteLine(linia);
  55. }
  56. }
  57.  
  58. }
  59. }
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement