Files
iFactory.Cutting.Unity/Assets/BITKit/Core/Ticker/ITicker.cs

15 lines
325 B
C#
Raw Normal View History

2024-01-23 02:56:26 +08:00
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 { }
}