2024-04-11 11:52:26 -05:00
|
|
|
//
|
|
|
|
// Created by caleb on 3/16/24.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef MP3_CALEBFONTENOT_SIMPLEMENU_H
|
|
|
|
#define MP3_CALEBFONTENOT_SIMPLEMENU_H
|
|
|
|
|
2024-04-12 21:59:01 -05:00
|
|
|
#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);
|
2024-04-11 11:52:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
#endif //MP3_CALEBFONTENOT_SIMPLEMENU_H
|