Files
BITKit/Src/Core/Ticker/ITicker.cs
CortexCore b7b89ee71a 1
2024-03-31 23:31:00 +08:00

15 lines
325 B
C#

using System;
namespace BITKit
{
public interface ITicker
{
ulong TickCount { get; }
void Add(Action action);
void Add(Action<float> action);
void Remove(Action<float> action);
}
public interface IMainTicker : ITicker { }
public interface IThreadTicker : ITicker { }
}