mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
Fix interface members visibility (#2094)
This commit is contained in:
@@ -25,8 +25,8 @@ using JetBrains.Annotations;
|
||||
namespace ArchiSteamFarm.Helpers {
|
||||
[PublicAPI]
|
||||
public interface ICrossProcessSemaphore {
|
||||
internal void Release();
|
||||
internal Task WaitAsync();
|
||||
internal Task<bool> WaitAsync(int millisecondsTimeout);
|
||||
void Release();
|
||||
Task WaitAsync();
|
||||
Task<bool> WaitAsync(int millisecondsTimeout);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user