Advertisement
ada1711

Untitled

Apr 28th, 2023
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 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 MemoryGame
  8. {
  9. internal class GameSettings
  10. {
  11. public int czasGry;
  12. public int czasPodgladu;
  13. public int maxPunkty;
  14. public int aktualnePunkty;
  15. public int wiersze;
  16. public int kolumny;
  17. public int bok;
  18.  
  19. public string plikLogo = "C:\\Users\\tmmmi\\Downloads\\MemoryGame\\MemoryGame\\img\\logo.jpg";
  20. public string folderObrazki = "C:\\Users\\tmmmi\\Downloads\\MemoryGame\\MemoryGame\\img\\memory\\";
  21.  
  22. public GameSettings()
  23. {
  24. UstawStartowe();
  25. }
  26.  
  27. public void UstawStartowe()
  28. {
  29. czasPodgladu = 5;
  30. czasGry = 60;
  31. maxPunkty = 0;
  32. wiersze = 4;
  33. kolumny = 6;
  34. bok = 150;
  35. aktualnePunkty = 0;
  36. }
  37. }
  38. }
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement