void
Number::draw() {
//for every row in the number
for(int i=0; i<5; i++) {
cout << cursorPosition(x, y+i);
//for each character
for(int j=0; j<5; j++) {
// if character is a # display white block
if(nums[n][i][j] == '#') {
cout << whiteBackground << ' ';
} else {
// otherwise, display an empty space
cout << normal << ' ';
}
}
}