Matching Game
Reflection Questions:
1. What we did was compare some ideas until we got to this one and decided to make it.
2. What help our team work together well was Che's ability to code.He was the one who did most of the work because he was able to do stuff that the rest of us couldn't really understand.
3. This app wasn't really trying to solve a problem other than a lack of entertainment. It worked fairly well in that it functions and does provide entertainment.
4. The biggest two problems were matching card together and creating card images. Each card is numbered from 1 to 16 and thats how they were matched.
if (((cardA % 2) == 1) AND (cardA = (cardB - 1))) OR (((cardB % 2) == 1) AND (cardB = (cardA - 1))).
Making the card images was a problem because they had to be a certain size (69 x 69) and the only image program on these computers is paint.
5. Given more time we could have added a title screen, a timer, and a exit app button.