void Start()
 {
     rumorManager = new RumorManager();
     rumorManager.initRumorWarehouse();
     patronManager = new PatronManager();
     patronManager.init();
     conversationWarehouse = new ConversationWarehouse();
     conversationWarehouse.initConversationWarehouse(patronManager.NumberOfPatronsInGame);
     orderManager.init();
     orderManager.unlockNewDrinksBasedOnIngredients(Ingredient.ingredientColor.red);
     orderManager.unlockNewDrinksBasedOnIngredients(Ingredient.ingredientColor.yellow);
     orderManager.unlockNewDrinksBasedOnIngredients(Ingredient.ingredientColor.green);
     orderManager.unlockNewDrinksBasedOnIngredients(Ingredient.ingredientColor.blue);
     JumpToStarterSeat();
     tutorial.Init(this);
 }
Esempio n. 2
0
 void Awake()
 {
     instance = this;
 }