Advertisement
PrincessFumi

Untitled

Jan 24th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #ifndef GRA_H_INCLUDED
  2. #define GRA_H_INCLUDED
  3. #include <SFML/Window.hpp>
  4. #include <SFML/Graphics.hpp>
  5. #include "Pionek.h"
  6. #include "Gracz.h"
  7. #include "Kostka.h"
  8. #include "Plansza.h"
  9. #include "Domek.h"
  10.  
  11.  
  12.  
  13. class Gra
  14.  
  15. {
  16. // Gracz* aktualny;
  17.  
  18.  
  19.  
  20. public:
  21. Gracz red(kolor_pionka czerwony);
  22. Gracz blue(kolor_pionka niebieski);
  23. Gracz green(kolor_pionka zielony);
  24. Gracz yellow(kolor_pionka zolty);
  25.  
  26. Gracz* zwroc_kolor_nastepnego(kolor_pionka a);
  27. void przebieg_gry(bool czy_poczatek_gry,int kostka,Pionek *pionek,Pionek* Pionki[]);
  28.  
  29.  
  30. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement