How can I have different food items in a snake game?
This is a piece of the code I'm given:
void display_food_at(int8_t x, int8_t y) {
set_display_attribute(31);
display_character_at(x, y, '#');
}
I believe I have to add something somewhere around it..???