示例#1
0
 public void InvestigatorDevoured(Investigator i, DevouredCallBack callback)
 {
     currentDeadInvestigator = i;
     App.View.deadInvestigatorMenuView.InvestigatorDevoured();
     devoured         = true;
     devouredCallBack = callback;
 }
 public void InvestigatorDevoured(Investigator i, DevouredCallBack callback)
 {
     i.Devoured();
     // Hide the menu for whatever killed you
     App.Controller.openMenuController.HideOpenMenu();
     App.Model.deadInvestigatorMenuModel.InvestigatorDevoured(i, callback);
 }