CTT/Unity/Assets/HotfixView/Event/UI/StartMainUISlotCDEvent.cs

18 lines
413 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using ET.EventType;
using System;
using System.Collections.Generic;
using ET;
namespace ET
{
public class StartMainUISlotCDEvent : AEvent_Sync<StartMainUISlotCD>
{
public override void Run(StartMainUISlotCD args)
{
int time = args.time;
int id = args.id;
MainUISlotComponent.Instance.SetPublicCD(args.mainUIType, time,id,args.cd);
}
}
}