Skip to content
Permalink
f244cec48e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
22 lines (14 sloc) 355 Bytes
#ifndef MENU_H
#define MENU_H
#define UP_KEY 65
#define DOWN_KEY 66
#define ENTER_KEY 10
void drawCocktails(int xMax, int yMax, int mid, int mid2, WINDOW* pic, WINDOW* pic2);
void drawLogo(int xMax);
int kbhit();
int showOptionsScreen(int yMax, int xMax, bool isPauseMenu);
int showMainMenu();
bool isMuted();
void toggleMute();
int main();
#endif