2022-10-13 13:53:26 +02:00
|
|
|
|
using Programmation_objet_TLESIO21.projet;
|
2022-09-08 08:53:24 +02:00
|
|
|
|
|
2022-10-13 13:53:26 +02:00
|
|
|
|
public class Program {
|
|
|
|
|
public static void Main(string[] args) {
|
2022-10-13 22:03:05 +02:00
|
|
|
|
GameManager gm = new GameManager();
|
|
|
|
|
gm.initializeGame();
|
|
|
|
|
|
|
|
|
|
Console.WriteLine(gm.GetPlayers()[0]);
|
|
|
|
|
Console.WriteLine("");
|
2022-10-13 13:53:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|