Advertisement
Steefmaester

AfficherScore.h

Nov 30th, 2015
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 KB | None | 0 0
  1. #ifndef _Score_
  2. #define _Score_
  3.  
  4. class AfficherScore {
  5.  
  6. private :
  7.  
  8.     char A, B, C, D, E, F;
  9.     int E1, E2, Time;
  10.    
  11.     int Recup_Unite(int);
  12.     int Recup_Dizaine(int);
  13.    
  14.     char AfficheurBleu(int);
  15.     char AfficheurRouge(int);
  16.     void EnvoyerScore();
  17.  
  18. public :
  19.  
  20.     AfficherScore();
  21.     void init();
  22.    
  23.     void setE1(int);
  24.     void setE2(int);
  25.     void setTime(int);
  26.    
  27.     int getE1() const;
  28.     int getE2() const ;
  29.     int getTime() const;
  30.  
  31.  
  32. };
  33.  
  34.  
  35. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement