Exemplo n.º 1
0
 // automatic drama resolution
 void AutomaticResolution()
 {
     Debug.Log("Drama in a room with 0 crew members !! Auto-resolution !");
     UpdatePrediction(0);
     CurrentDramaReport = DramaSolver.Apply(CurrentDramaOutcomePrediction);
     EndDrama();
 }
Exemplo n.º 2
0
 // Evacuate Now ! (triggered by button)
 public void Evacuate()
 {
     CurrentDramaReport = DramaSolver.Apply(CurrentDramaOutcomePrediction);
     EndDrama();
 }