Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class CDominoes{
  2. public:
  3. struct Data
  4. {
  5. int top;
  6. int bottom;
  7.  
  8. Data()
  9. {
  10. top = 0;
  11. bottom = 0;
  12. }
  13. } domino[28];
  14.  
  15. //methods to assign spots to halves
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement