예제 #1
0
 public virtual void SetData(GuideStepType stepType, GuideStepCompleteType completeType, float completeWaitSecond, string describe)
 {
     this.stepType           = stepType;
     this.completeType       = completeType;
     this.completeWaitSecond = completeWaitSecond;
     this.describe           = describe;
 }
예제 #2
0
 public GuideStepData_LoackGuide(int loackLevel, GuideStepType stepType, GuideStepCompleteType completeType, float completeWaitSecond, string describe)
 {
     this.loackLevel = loackLevel;
     SetData(stepType, completeType, completeWaitSecond, describe);
 }
예제 #3
0
 public GuideStepData_LoackGuide(int loackLevel, GuideStepType stepType, string describe)
 {
     this.loackLevel = loackLevel;
     SetData(stepType, describe);
 }
예제 #4
0
 public GuideStepData_LoackGuide(int loackLevel, GuideStepType stepType)
 {
     this.loackLevel = loackLevel;
     SetData(stepType, "");
 }
예제 #5
0
 public virtual void SetData(int moduleId, GuideGroupType groupType, GuideStepType stepType, string describe)
 {
     this.moduleId = moduleId;
     SetData(groupType, stepType, describe);
 }
예제 #6
0
 public static string GetName(GuideStepType type)
 {
     return(EnumUtil.GetName <GuideStepType> (type));
 }
예제 #7
0
 public static int GetId(GuideStepType type)
 {
     return((int)type);
 }
예제 #8
0
 public GuideStepData_Panel(GuidePanelID panelId, GuideStepType stepType, GuideStepCompleteType completeType, float completeWaitSecond, string describe)
 {
     this.panelId = panelId;
     SetData(stepType, completeType, completeWaitSecond, describe);
 }
예제 #9
0
 public GuideStepData_Panel(GuidePanelID panelId, GuideStepType stepType, string describe)
 {
     this.panelId = panelId;
     SetData(stepType, GuideStepCompleteType.NextFrame, describe);
 }
예제 #10
0
 public virtual void SetData(GuideGroupType groupType, GuideStepType stepType, string describe)
 {
     this.groupType = groupType;
     SetData(stepType, describe);
 }
예제 #11
0
        public GuideStepData_ProduceSkill(GuideStepType type, GuideStepCompleteType completeType, int skillId, string describe)
        {
            this.skillId = skillId;

            SetData(type, completeType, describe);
        }
예제 #12
0
 public virtual void SetData(GuideStepType stepType, string describe)
 {
     this.stepType = stepType;
     this.describe = describe;
 }
예제 #13
0
 public GuideStepData(GuideStepType stepType, GuideStepCompleteType completeType, float completeWaitSecond, string describe)
 {
     SetData(stepType, completeType, completeWaitSecond, describe);
 }
예제 #14
0
 public GuideStepData(GuideStepType stepType, GuideStepCompleteType completeType, string describe)
 {
     SetData(stepType, completeType, 0, describe);
 }
예제 #15
0
 public GuideStepData(GuideStepType stepType, string describe)
 {
     SetData(stepType, describe);
 }
예제 #16
0
 public GuideStepData(GuideStepType stepType)
 {
     SetData(stepType, "");
 }