CTT/Server/Hotfix/Game/Event/UpdatePer1DayEvent.cs

18 lines
389 B
C#
Raw Normal View History

2021-04-24 17:39:11 +08:00
using Cal.DataTable;
using ET.EventType;
using System;
using System.Collections.Generic;
using System.Linq;
namespace ET
{
public class AccountRegisterCountEvent: AEvent<EventType.UpdatePer1DayOfMonth>
{
public override async ETTask Run(UpdatePer1DayOfMonth args)
{
await ETTask.CompletedTask;
AccountHelper.Refresh();
}
}
}