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