You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void composite(int score, int NUM_INVADERS); // Add game score below the bottom of frame
public:
std::vector<std::vector<std::string>> content; // A frame is a vector of vectors of strings; outer vector contains columns, inner vector is rows of that column; each 'pixel' is a string
Frame(); // Initialize a new frame
void render(int score, int NUM_INVADERS); // Uses the ncurses library to push a frame to screen