1
This commit is contained in:
@@ -4,11 +4,10 @@ namespace BITKit
|
||||
{
|
||||
public interface ITicker
|
||||
{
|
||||
ulong TickCount { get; }
|
||||
void Add(Action action);
|
||||
void AddAsUpdate(Action<float> action);
|
||||
void AddAsFixedUpdate(Action<float> action);
|
||||
void RemoveAsUpdate(Action<float> action);
|
||||
void RemoveAsFixedUpdate(Action<float> action);
|
||||
void Add(Action<float> action);
|
||||
void Remove(Action<float> action);
|
||||
}
|
||||
public interface IMainTicker : ITicker { }
|
||||
public interface IThreadTicker : ITicker { }
|
||||
|
Reference in New Issue
Block a user