Files
Ragon/Ragon.Core/Time/IScheduleTask.cs
T

6 lines
86 B
C#
Raw Normal View History

2022-12-16 00:05:46 +04:00
namespace Ragon.Core.Time;
public interface IScheduleTask
{
public void Tick();
}