10 lines
224 B
C#
10 lines
224 B
C#
using Programmation_objet_TLESIO21.projet;
|
|
|
|
public class Program {
|
|
public static void Main(string[] args) {
|
|
GameManager gm = new GameManager();
|
|
gm.InitializeGame();
|
|
|
|
Console.ReadLine();
|
|
}
|
|
} |