|
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 { }
|
|
}
|