From 87da177a5c5e764c9bf1d93ab416c2cf2720124c Mon Sep 17 00:00:00 2001
From: client_Zxw <826696702@qq.com>
Date: 星期四, 10 一月 2019 16:22:00 +0800
Subject: [PATCH] 5767 【前端】【1.5】新增8-14天活动功能(制作成7日运营活动的模板)
---
Core/GameEngine/Model/Config/WeekPartyConfig.cs | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/Core/GameEngine/Model/Config/WeekPartyConfig.cs b/Core/GameEngine/Model/Config/WeekPartyConfig.cs
index a7f5fa5..15310ed 100644
--- a/Core/GameEngine/Model/Config/WeekPartyConfig.cs
+++ b/Core/GameEngine/Model/Config/WeekPartyConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: 绗簩涓栫晫
-// [ Date ]: Tuesday, January 08, 2019
+// [ Date ]: Thursday, January 10, 2019
//--------------------------------------------------------
using UnityEngine;
@@ -15,7 +15,8 @@
public int ActionType { get ; private set ; }
public string Description { get ; private set; }
public int jump { get ; private set ; }
- public int order { get ; private set ; }
+ public int order { get ; private set ; }
+ public int DailyQusetId { get ; private set ; }
public override string getKey()
{
@@ -33,7 +34,9 @@
jump=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
- order=IsNumeric(rawContents[4]) ? int.Parse(rawContents[4]):0;
+ order=IsNumeric(rawContents[4]) ? int.Parse(rawContents[4]):0;
+
+ DailyQusetId=IsNumeric(rawContents[5]) ? int.Parse(rawContents[5]):0;
}
catch (Exception ex)
{
--
Gitblit v1.8.0