Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MemoryGame
- {
- internal class GameSettings
- {
- public int czasGry;
- public int czasPodgladu;
- public int maxPunkty;
- public int aktualnePunkty;
- public int wiersze;
- public int kolumny;
- public int bok;
- public string plikLogo = "C:\\Users\\tmmmi\\Downloads\\MemoryGame\\MemoryGame\\img\\logo.jpg";
- public string folderObrazki = "C:\\Users\\tmmmi\\Downloads\\MemoryGame\\MemoryGame\\img\\memory\\";
- public GameSettings()
- {
- UstawStartowe();
- }
- public void UstawStartowe()
- {
- czasPodgladu = 5;
- czasGry = 60;
- maxPunkty = 0;
- wiersze = 4;
- kolumny = 6;
- bok = 150;
- aktualnePunkty = 0;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement