forked from AlexCampbell/Risk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.cpp
More file actions
26 lines (16 loc) · 693 Bytes
/
Main.cpp
File metadata and controls
26 lines (16 loc) · 693 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
#include <iostream>
int main(){
/* int min_players = 2;
int max_players = 6;
int players = 0;*/
int pl;
std::cout << "Welcome to 'Whatever the hell I decied to call the game' Beta version 1.4.3. Currently as you can see this is still " << std::endl
<< "is purely texted based as I'm still working on the core mechanics and haven't decieded on a GUI yet. Also currently there is no AI. I'm not that crazy yet." << std::endl
<< "Also currently only support for two player. Anyways, have fun and hopefully enjoy." << std::endl;
std::cout << "Do you want to play?: ";
std::cin >> pl;
if (pl == 1){
std::cout << "Initializing Territories." << std::endl;
}
return 0;
}