mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* Moved IPauseManager from server to shared. * Moved ITimerManager from Timers to Timing. * Added missing IConsoleHost to server/client RegisterIoC. Tests work again.
12 lines
252 B
C#
12 lines
252 B
C#
using System.Threading;
|
|
|
|
namespace Robust.Shared.Timing
|
|
{
|
|
public interface ITimerManager
|
|
{
|
|
void AddTimer(Timer timer, CancellationToken cancellationToken = default);
|
|
|
|
void UpdateTimers(FrameEventArgs frameEventArgs);
|
|
}
|
|
}
|