Advertisement
drakon-firestone

Untitled

Oct 27th, 2024
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. using Raylib_cs;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace Snake
  9. {
  10. internal class Gra
  11. {
  12. private Waz waz;
  13.  
  14. private bool czyKoniecGry;
  15. private int szerokoscEkranu;
  16. private int wysokoscEkranu;
  17. private int rozmiarSiatki;
  18. private int punkty = 0;
  19. private int szybkosc = 10;
  20.  
  21. private void Inicjalizuj()
  22. {
  23. rozmiarSiatki = 40;
  24. szerokoscEkranu = 800;
  25. wysokoscEkranu = 640;
  26. czyKoniecGry = false;
  27.  
  28. waz = new Waz(rozmiarSiatki, szerokoscEkranu, wysokoscEkranu);
  29.  
  30.  
  31. Raylib.InitWindow(szerokoscEkranu, wysokoscEkranu, "Gra Snake");
  32. Raylib.SetTargetFPS(szybkosc);
  33. }
  34.  
  35. private void Rysuj()
  36. {
  37. Raylib.BeginDrawing();
  38. Raylib.ClearBackground(Color.Black);
  39.  
  40. waz.Rysuj();
  41. Raylib.DrawText(punkty.ToString().PadLeft(2, '0'), 20, 20, 40, Color.White);
  42.  
  43.  
  44. Raylib.EndDrawing();
  45. }
  46.  
  47. public void Uruchom()
  48. {
  49. Inicjalizuj();
  50.  
  51. while (!Raylib.WindowShouldClose())
  52. {
  53. Rysuj();
  54. }
  55.  
  56. Raylib.CloseWindow();
  57. }
  58.  
  59. }
  60. }
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement