mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
16 lines
374 B
C#
16 lines
374 B
C#
using System;
|
|
using System.Threading;
|
|
|
|
namespace SharedLibraryCore.Interfaces;
|
|
|
|
public interface IScriptPluginTimerHelper
|
|
{
|
|
void Start(int delay, int interval);
|
|
void Start(int interval);
|
|
void Start();
|
|
void Stop();
|
|
void OnTick(Delegate action, string actionName);
|
|
bool IsRunning { get; }
|
|
void SetDependency(SemaphoreSlim dependentSemaphore);
|
|
}
|