From 745b32e1db4a8442a7b6584b327529012c10f4f8 Mon Sep 17 00:00:00 2001
From: client_Zxw <826696702@qq.com>
Date: 星期三, 23 一月 2019 10:13:54 +0800
Subject: [PATCH] 5767 【前端】【1.5】新增8-14天活动功能
---
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 15310ed..ce27992 100644
--- a/Core/GameEngine/Model/Config/WeekPartyConfig.cs
+++ b/Core/GameEngine/Model/Config/WeekPartyConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: 绗簩涓栫晫
-// [ Date ]: Thursday, January 10, 2019
+// [ Date ]: Wednesday, January 23, 2019
//--------------------------------------------------------
using UnityEngine;
@@ -16,7 +16,8 @@
public string Description { get ; private set; }
public int jump { get ; private set ; }
public int order { get ; private set ; }
- public int DailyQusetId { get ; private set ; }
+ public int DailyQusetId { get ; private set ; }
+ public int SpecialDisplayType { get ; private set ; }
public override string getKey()
{
@@ -36,7 +37,9 @@
order=IsNumeric(rawContents[4]) ? int.Parse(rawContents[4]):0;
- DailyQusetId=IsNumeric(rawContents[5]) ? int.Parse(rawContents[5]):0;
+ DailyQusetId=IsNumeric(rawContents[5]) ? int.Parse(rawContents[5]):0;
+
+ SpecialDisplayType=IsNumeric(rawContents[6]) ? int.Parse(rawContents[6]):0;
}
catch (Exception ex)
{
--
Gitblit v1.8.0