Advertisement
Guest User

Untitled

a guest
Jan 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include <string>
  2. #include <vector>
  3. #include "Carte.h"
  4. #include <iostream>
  5.  
  6. class Jucator
  7. {
  8. private:
  9.     Carte carte[2];
  10.     int m_fise;
  11.     int m_fisePeMasa;
  12.     int m_pariu;
  13.     string m_nume;
  14.     bool fold;
  15.     bool m_allIn;
  16.     int m_valori;
  17.  
  18. public:
  19.  
  20.     Jucator()
  21. :m_fise(0)
  22. ,m_fisePeMasa(0)
  23. ,m_pariu(0)
  24. ,fold(false)
  25. ,m_allIn(false)
  26. ,m_valori(0)
  27. {}
  28. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement