blob: 7062340a603262c2611615ca8d2a213a658b174e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
namespace XUtliPoolLib
{
internal interface IXRedpointForbidMgr
{
void AddForbid(int sys, bool bImmUpdateUI = true);
void AddForbids(int[] systems, bool bImmUpdateUI = true);
void RemoveForbid(int sys, bool bImmUpdateUI = true);
void RemoveForbids(int[] systems, bool bImmUpdateUI = true);
void ClearForbids(bool bImmUpdateUI = true);
}
}
|