-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
49 lines (46 loc) · 4.29 KB
/
main.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "Classes.h"
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
/*
BEWARE OF MIGHTY* DRAGON
*Friendly to people who give A's to Anthony
==(W{==========- /===-
|| (.--.) /===-_---~~~~~~~~~------____
| \_,|**|,__ |===-~___ _,-'
-==\\ `\ ' `--' ), `//~\\ ~~~~`---.___.-~~
______-==| /`\_. .__/\ \ | | \\ _-~`
__--~~~ ,-/-==\\ ( | . |~~~~| | | `\ ,'
_-~ /' | \\ )__/==0==-\<>/ / / \ /
.' / | \\ /~\___/~~\/ /' / \ /'
/ ____ / | \`\.__/-~~ \ |_/' / \/'
/-'~ ~~~~~---__ | ~-/~ ( ) /' _--~`
\_| / _) | ; ), __--~~
'~~--_/ _-~/- |/ \ '-~ \
{\__--_/} / \\_>-|)<__\ \
/' (_/ _-~ | |__>--<__| |
| _/) )-~ | |__>--<__| |
/ /~ ,_/ / /__>---<__/ |
o-o _// /-~_>---<__-~ /
(^(~ /~_>---<__- _-~
,/| /__>--<__/ _-~
,//('( |__>--<__| / .----_
( ( ')) |__>--<__| | /' _---_~\
`-)) )) ( |__>--<__| | /' / ~\`\
,/,'//( ( \__>--<__\ \ /' // ||
,( ( ((, )) ~-__>--<_~-_ ~--____---~' _/'/ /'
`~/ )` ) ,/| ~-_~>--<_/-__ __-~ _/
._-~//( )/ )) ` ~~-'_/_/ /~~~~~~~__--~
;'( ')/ ,)( ~~~~~~~~~~
' ') '( (/
' ' `
*/
int main()
{
srand(time(NULL));
cout << "Welcome to Battleship! We'll start off by making your ships.\n";
Game battleship;
battleship.playGame();
return 0;
}