Files
BITFALL/Assets/BITKit/Core/Ticker/ITicker.cs
CortexCore 922271e96d Revert "1"
This reverts commit 0b66b0a19e.
2025-01-20 23:39:36 +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 { }
}