예제 #1
0
 public Serveur(string nom, string prenom, int age, int[] position, Loader loader) : base(nom, prenom, age, position, loader)
 {
     etat     = "idle";
     comptoir = loader.GetWorld().GetComptoir();
 }
예제 #2
0
 //Instancie le comptoir
 public Comptoir InstantiateComptoir(int width, int height, int[] position, int[] pointAccesRestaurant, int[] pointAccesCuisine)
 {
     SetSalle(width, height, position, "Comptoir");
     comptoir = new Comptoir(width, height, position, this, pointAccesRestaurant, pointAccesCuisine);
     return(comptoir);
 }