18 lines
413 B
C#
18 lines
413 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|