Files
BITFALL/Assets/BITKit/Core/Ticker/ITicker.cs
CortexCore 1f5b779aa1 1
2023-12-15 00:08:02 +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 { }
}