From 33a78a9ac0606ce049c1c0d74966cae12ff5e43e Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期一, 05 十一月 2018 17:43:21 +0800
Subject: [PATCH] 4398 【1.2】聊天气泡框

---
 Core/GameEngine/Model/Config/ChatBubbleBoxConfig.cs |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/Core/GameEngine/Model/Config/ChatBubbleBoxConfig.cs b/Core/GameEngine/Model/Config/ChatBubbleBoxConfig.cs
index 58bf0d8..c324d68 100644
--- a/Core/GameEngine/Model/Config/ChatBubbleBoxConfig.cs
+++ b/Core/GameEngine/Model/Config/ChatBubbleBoxConfig.cs
@@ -19,7 +19,9 @@
 		public string rightBubbleIcon { get ; private set; } 
 		public int[] leftOffset;
 		public int[] rightOffset;
-		public string Icon { get ; private set; } 
+		public string Icon { get ; private set; } 
+		public int Jump { get ; private set ; }
+		public string GainTip { get ; private set; } 
 
 		public override string getKey()
         {
@@ -55,7 +57,11 @@
 					 int.TryParse(rightOffsetStringArray[i],out rightOffset[i]);
 				}
 			
-				Icon = rawContents[8].Trim();
+				Icon = rawContents[8].Trim();
+			
+				Jump=IsNumeric(rawContents[9]) ? int.Parse(rawContents[9]):0; 
+			
+				GainTip = rawContents[10].Trim();
             }
             catch (Exception ex)
             {

--
Gitblit v1.8.0