|
Lines 70-78
Link Here
|
| 70 |
virtual void redraw(void) = 0; // Refresh |
70 |
virtual void redraw(void) = 0; // Refresh |
| 71 |
virtual int getinput(void) = 0; // Get user input |
71 |
virtual int getinput(void) = 0; // Get user input |
| 72 |
virtual void bell(void) = 0; // Beep |
72 |
virtual void bell(void) = 0; // Beep |
| 73 |
virtual void score(size_t p, const PLAYER& p) = 0; // Post current score |
73 |
virtual void score(size_t pa, const PLAYER& pb) = 0; // Post current score |
| 74 |
virtual void games(size_t p, const PLAYER& p) = 0; // Post games won |
74 |
virtual void games(size_t pa, const PLAYER& pb) = 0; // Post games won |
| 75 |
virtual void total(size_t p, const PLAYER& p) = 0; // Post total score |
75 |
virtual void total(size_t pa, const PLAYER& pb) = 0; // Post total score |
| 76 |
virtual void ties(const PLAYER& p) = 0; // Post tie games |
76 |
virtual void ties(const PLAYER& p) = 0; // Post tie games |
| 77 |
}; |
77 |
}; |
| 78 |
|
78 |
|