Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DELUXEHUNTER authored Feb 6, 2024
1 parent a852e26 commit 971df90
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Neoa/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class Program
public static Player CNAME = new Player();
static void Main(string[] args)
{
Console.ForegroundColor = ConsoleColor.Red;
Start();
Encounters.FirstEncounter();

Expand All @@ -36,10 +37,9 @@ static void Start()
WriteLine("The only thing you remember is your name " + CNAME);
Console.ReadKey();

WriteLine("The knob on the door begins to turn.. A guard walks through..");
WriteLine("\"Come with me "+CNAME+" you have been released on order from the king\"");
WriteLine("He takes you to the entrance.. ");
WriteLine("");
WriteLine("The knob on the door begins to turn.. Another prisoner walks through..");
WriteLine("\"So "+CNAME+"you think your a big shot, how about you back that up with a fight");

}
public static void WriteLine(string text, int speed = 60)
{
Expand All @@ -66,8 +66,8 @@ class Encounters
//Encounters
public static void FirstEncounter()
{
WriteLine("Fight");
WriteLine("Fight");
WriteLine("\"So "+CNAME+"you think your a big shot, how about you back that up with a fight");

Check failure on line 69 in Neoa/Program.cs

View workflow job for this annotation

GitHub Actions / build

The name 'CNAME' does not exist in the current context

Check failure on line 69 in Neoa/Program.cs

View workflow job for this annotation

GitHub Actions / build

The name 'CNAME' does not exist in the current context

Console.ReadKey();
Combat(false, "Knight",1,4);

Expand Down

0 comments on commit 971df90

Please sign in to comment.