Files
MinFt/Client/Assets/Scripts/Services/RemovedServiceStubs.cs
2026-04-27 12:07:32 +08:00

72 lines
1.7 KiB
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.
// 此文件包含已移除服务ClubService 等)中定义的事件/数据类型存根
// 这些类型仍被项目中的其他代码引用,因此需要保留定义
using System;
using System.Collections.Generic;
using cfg;
using GameCore;
namespace game
{
public class ClubStateChangeEvent
{
public int state;
public bool joinClub;
}
public class ClubSttingUpdateEvent
{
}
public class GetClubPlayInfoEvent
{
public string id;
public string name;
public string avatarUrl;
}
public class LureDonateData
{
public DateTime DonateCountTime { get; set; }
public int ClubLureDonateCount { get; set; }
public DateTime ClubLureRequestCDEnd { get; set; }
}
}
/// <summary>
/// 事件弹窗数据 (原 ClubService 模块)
/// </summary>
public class EventPopupData
{
public ReportDataType type;
public DateTime createTime;
public string playerID;
public string content;
}
/// <summary>
/// 链式礼包数据接口 (原已删除模块)
/// </summary>
public interface IChainPackData
{
int ChainProgress { get; set; }
int ChainListCount { get; }
bool IsEndGame { get; }
int EventId { get; }
int TokenProgress { get; }
List<int> ChainList { get; }
Pack GetChainPackByChainProgress(int chainProgress);
int GetChainProgressBySlotIdx(int slotIdx);
List<ItemData> GetItemsByPackDropId(int dropId);
void UploadData();
List<int> GetTokenProgressRewardAfterAddingToken(int tokenAdded);
}
/// <summary>
/// 进度链式礼包数据接口 (原已删除模块)
/// </summary>
public interface IProgressChainPackData : IChainPackData
{
}