复制牌,保护buff显示调整

This commit is contained in:
SoulliesOfficial
2025-10-30 12:07:59 -04:00
parent b68eeda9af
commit 8b72c75128
33 changed files with 433 additions and 104 deletions

View File

@@ -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>