复制牌,保护buff显示调整
This commit is contained in:
@@ -103,6 +103,14 @@ namespace SLSFramework.General
|
||||
return newList;
|
||||
}
|
||||
|
||||
public static void RemoveRange<T>(this IList<T> list, IEnumerable<T> elements)
|
||||
{
|
||||
foreach (T element in elements)
|
||||
{
|
||||
list.Remove(element);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 根据指定的过滤器函数,返回一个新的列表,包含符合条件的元素
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user