Exemplo n.º 1
0
    private void InvokeSkill(ProjectMultiDeburfSkill skill)
    {
        foreach (var stageModificationBurf in skill.Deburf.OfType <IStageModificationCommand>())
        {
            stageModificationBurf.Modify(StageManager.Instance.CurrentStage);
        }

        foreach (var programmer in NotVacationProgrammers)
        {
            AttachBurfToProgrammer(programmer, skill.Deburf.Where(deburf => deburf as IStageModificationCommand == null));
        }
    }
 private void RenderBossSkillNotice(ProjectMultiDeburfSkill multiDeburfSkill)
 {
     BossSkillText.text = string.Format("프로젝트가 프로그래머 모두의 상태에 영향을 줍니다!");
 }