From 1fd5714a8721a45527eeec1889ea280bbe07fb28 Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期五, 12 四月 2019 19:22:54 +0800
Subject: [PATCH] 3335 宗门试炼删除兑换逻辑

---
 Lua/Gen/SnxxzUIDailyQuestModelWrap.cs |   34 ----------------------------------
 1 files changed, 0 insertions(+), 34 deletions(-)

diff --git a/Lua/Gen/SnxxzUIDailyQuestModelWrap.cs b/Lua/Gen/SnxxzUIDailyQuestModelWrap.cs
index 81cdb67..d1f2b43 100644
--- a/Lua/Gen/SnxxzUIDailyQuestModelWrap.cs
+++ b/Lua/Gen/SnxxzUIDailyQuestModelWrap.cs
@@ -58,12 +58,10 @@
             Utils.RegisterFunc(L, Utils.GETTER_IDX, "currentActiveValue", _g_get_currentActiveValue);
             Utils.RegisterFunc(L, Utils.GETTER_IDX, "everyDayRedpoint", _g_get_everyDayRedpoint);
             Utils.RegisterFunc(L, Utils.GETTER_IDX, "timeLimitRedpoint", _g_get_timeLimitRedpoint);
-            Utils.RegisterFunc(L, Utils.GETTER_IDX, "trialExchangeRedpoint", _g_get_trialExchangeRedpoint);
             
 			Utils.RegisterFunc(L, Utils.SETTER_IDX, "currentDailyQuest", _s_set_currentDailyQuest);
             Utils.RegisterFunc(L, Utils.SETTER_IDX, "everyDayRedpoint", _s_set_everyDayRedpoint);
             Utils.RegisterFunc(L, Utils.SETTER_IDX, "timeLimitRedpoint", _s_set_timeLimitRedpoint);
-            Utils.RegisterFunc(L, Utils.SETTER_IDX, "trialExchangeRedpoint", _s_set_trialExchangeRedpoint);
             
 			
 			Utils.EndObjectRegister(type, L, translator, null, null,
@@ -925,21 +923,6 @@
             return 1;
         }
         
-        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
-        static int _g_get_trialExchangeRedpoint(RealStatePtr L)
-        {
-		    try {
-                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
-			
-                Snxxz.UI.DailyQuestModel gen_to_be_invoked = (Snxxz.UI.DailyQuestModel)translator.FastGetCSObj(L, 1);
-                translator.Push(L, gen_to_be_invoked.trialExchangeRedpoint);
-            } catch(System.Exception gen_e) {
-                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
-            }
-            return 1;
-        }
-        
-        
         
         [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
         static int _s_set_currentDailyQuest(RealStatePtr L)
@@ -986,23 +969,6 @@
             return 0;
         }
         
-        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
-        static int _s_set_trialExchangeRedpoint(RealStatePtr L)
-        {
-		    try {
-                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
-			
-                Snxxz.UI.DailyQuestModel gen_to_be_invoked = (Snxxz.UI.DailyQuestModel)translator.FastGetCSObj(L, 1);
-                gen_to_be_invoked.trialExchangeRedpoint = (Snxxz.UI.Redpoint)translator.GetObject(L, 2, typeof(Snxxz.UI.Redpoint));
-            
-            } catch(System.Exception gen_e) {
-                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
-            }
-            return 0;
-        }
-        
-		
-		
         [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
         static int _e_activeValueRewardGotEvent(RealStatePtr L)
         {

--
Gitblit v1.8.0