80 lines
1.5 KiB
C#
80 lines
1.5 KiB
C#
namespace EventPartnerGather
|
|
{
|
|
public class EventGatherPartnerOnInvited
|
|
{
|
|
|
|
}
|
|
//
|
|
public class EventPartnerGatherUpdateTicketCount
|
|
{
|
|
public int Count;
|
|
}
|
|
// 执行开始逻辑
|
|
public class EventPartnerGatherSceneStart
|
|
{
|
|
}
|
|
|
|
public class EventPartnerGatherSceneEnd
|
|
{
|
|
}
|
|
|
|
public class EventPartnerGatherAddPartner
|
|
{
|
|
public int SlotId;
|
|
public int DelaySeconds;
|
|
}
|
|
|
|
public class EventPartnerRefreshPartnerUI
|
|
{
|
|
|
|
}
|
|
|
|
public class EventPartnerGatherPartnerAddScore
|
|
{
|
|
public string partnerId;
|
|
public int score;
|
|
}
|
|
|
|
// 刷新额外时间,结束了
|
|
public class EventPartnerGatherBonusEndEvent
|
|
{
|
|
// public int status ;
|
|
}
|
|
|
|
// 挖矿事件,修改矿石的状态
|
|
public class EventMiningOre
|
|
{
|
|
public int Num;
|
|
}
|
|
// 事件定义
|
|
public class EventPartnerGatherPointsUpdate
|
|
{
|
|
public int Points;
|
|
}
|
|
|
|
public class EventPartnerGatherMiningProgressUpdate
|
|
{
|
|
public int Progress;
|
|
}
|
|
|
|
public class EventPartnerGatherTrainProgressUpdate
|
|
{
|
|
public int Progress;
|
|
public int MaxNodes;
|
|
}
|
|
|
|
public class EventSavePartnerInfoCache { }
|
|
public class EventPartnerGatherRefreshEvent { }
|
|
|
|
//播放Trophy
|
|
public class EventPartnerGatherPlayTrophy
|
|
{
|
|
}
|
|
|
|
// 弹出Pack
|
|
public class EventPartnerGatherShowPack
|
|
{
|
|
|
|
}
|
|
|
|
} |