16 lines
378 B
C
16 lines
378 B
C
|
//
|
||
|
// 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
|