Ejemplo n.º 1
0
    public void ReckoningSelected(int index)
    {
        ReckoningEvent re = App.Model.reckoningMythosModel.currentEvents[index];

        if (re.source == ReckoningSource.Investigator) // Set active investigator to reckoning source
        {
            Investigator i        = re.investigator;
            int          invIndex = App.Model.investigatorModel.GetInvestigatorIndex(i.investigatorName);
            App.Controller.investigatorController.NewActiveInvestigator(invIndex);
        }

        App.Model.reckoningMythosModel.StartReckoningEvent(index);
        re.callBack();
    }