mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-07 02:08:17 +02: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);
|
|
}
|
|
}
|