aboutsummaryrefslogtreecommitdiff
path: root/CST 126/Homework 1/menu.hpp
blob: c38492759819ac5e3d24d8401a3d304881bc8353 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef MENU_H
#define MENU_H

#include <iostream>
#include "GuessingGame.hpp"

using std::cout;
using std::cin;
using std::endl;

inline void DisplayMenuHomework1Menu() {
	cout << "***************************************************************" << endl;
	cout << "Welcome to the menu!\n";
	cout << "1. Currency Converter\n";
	cout << "2. Guessing Game\n";
	cout << "3. Temperature Logger\n";
	cout << "5. Exit\n";
	cout << endl;
	cout << "Please pick a number for your choice: ";
}






#endif