-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
37 lines (33 loc) · 1.01 KB
/
Program.cs
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
using System;
namespace My_Adventure_Game_2._0
{
class Program
{
static void Main(string[] args)
{
Story gameStory = new Story();
gameStory.Intro1();
Player player = new Player();
Console.Write("\nWhat is your name? ");
player.Name = Console.ReadLine();
Console.Write($"\nHi {player.Name}, Ready to Explore Gods Domain(y/n)? ");
string bReady = Console.ReadLine();
if (bReady == "y")
{
Minion minion = new Minion();
Encounter encounter01 = new Encounter(player, minion);
gameStory.Intro2();
if (player.Exp >= 1.0f)
{
JobSelect newJob = new JobSelect();
newJob.jobSelect();
}
}
else
{
Console.WriteLine("Good Bye");
}
Console.ReadLine();
}
}
}