forked from cfrantzidis/DungeonExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
29 lines (25 loc) · 696 Bytes
/
Copy pathProgram.cs
File metadata and controls
29 lines (25 loc) · 696 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
global using System;
global using System.Linq;
global using System.Collections.Generic;
global using System.Text;
global using System.Threading.Tasks;
global using System.Threading;
global using System.IO;
global using System.Diagnostics;
global using System.Text.Json;
namespace DungeonExplorer;
public static class Program
{
/// <summary>
/// Run point of the program
/// </summary>
/// <param name="args"></param>
static void Main(string[] args)
{
// This game is the Assessment for CMP1903M 2425 A01 and A02
Game game = new Game();
game.Start();
Console.WriteLine("\nPress any key to exit...");
Console.ReadKey();
}
}