ASDV-Cpp/Assignments/MP5_CalebFontenot/simpleMenu.h

16 lines
378 B
C
Raw Permalink Normal View History

2024-04-22 21:13:31 -05:00
//
// Created by caleb on 3/16/24.
//
#ifndef MP3_CALEBFONTENOT_SIMPLEMENU_H
#define MP3_CALEBFONTENOT_SIMPLEMENU_H
#include <vector>
//#include <ncurses.h>
std::string printMenu(const int *selection, std::vector<std::string>& menu, std::string menuTitle);
int simpleMenu(std::vector<std::string>& menuItems, std::string menuTitle);
#endif //MP3_CALEBFONTENOT_SIMPLEMENU_H