예제 #1
0
파일: Quest.cs 프로젝트: xPathin/DiIiS-
 public void Notify(Mooege.Common.MPQ.FileFormats.QuestStepObjectiveType type, int value)
 {
     // Logger.Debug(" Current QuestStepID is  {0} ", CurrentStep.QuestStepID);
     if (CurrentStep != null)
     {
         //Logger.Debug(" Notify through Quest impl for type {0} and value {1} ", type, value);
         CurrentStep.Notify(type, value);
     }
     else
     {
         Logger.Debug(" CurrentStep is NULL !!");
     }
 }