Files
JJBB/Assets/Project/Script/LuaScripts/UI/IMarketingActRetDel.cs
2024-08-23 15:49:34 +08:00

25 lines
642 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using System.Collections.Generic;
using Games.GlobeDefine;
using GCGame.Table;
using GCGame;
using System;
// 活动请求接口,接收某个活动下的所有子活动
// 包括子活动id子活动状态是否还在活动期间
public interface IMarketingActRetDel
{
// 活动列表
void MarketingActRetDel(MarketingActsRet marketActsRet);
void MarketingActRetDel_temp(System.Object marketActsRet);
// 页面信息
void MarketingActPageAwardRetDel(object packet);
// 领奖更新
void MarketingActPageGetAwardRet(object packet);
}