10 lines
227 B
C#
Raw Normal View History

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();
2022-10-15 18:39:27 +02:00
gm.InitializeGame();
2022-10-13 22:03:05 +02:00
Console.WriteLine("");
2022-10-13 13:53:26 +02:00
}
}