-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
31 lines (24 loc) · 947 Bytes
/
main.cpp
File metadata and controls
31 lines (24 loc) · 947 Bytes
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
28
29
30
31
/********************************************************************************************************
** Program Name: Final Project - A Text-based Game- main.cpp
** Author: Andrew Friedrich
** Date: 06/01/2019
** Description: This file is the Final Project - A Text-based Game - main.cpp - source
** file. This initates the program and runs the menu.
**
*********************************************************************************************************/
#include <iostream>
//#include "Game.hpp"
#include "menu.hpp"
int main()
{
std::cout << " Welcome to Final Project. " << std::endl;
std::cout << " A Text-based Game. " << std::endl;
std::cout << " Game startup now..... " << std::endl;
std::cout << "====================================================" << std::endl;
//Game go;
//go.menu_GOGO();
Menu go;
go.go_Menu();
std::cout <<" Game exit now." << std::endl;
return 0;
}