除了充盈都做完了
This commit is contained in:
@@ -51,5 +51,19 @@ namespace Continentis.MainGame.Card
|
||||
selectedCards.ForEach(selectEffect);
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 添加选择手牌的指令(无UI,直接选择符合条件的卡牌)
|
||||
/// </summary>
|
||||
/// <param name="commandGroup">目标指令组</param>
|
||||
public void AddSelectionCommands(ref CommandGroup commandGroup)
|
||||
{
|
||||
selectedCards = user.deckSubmodule.HandPile.Filtered(selectCondition).ToList();
|
||||
commandGroup.AddCommand(new Cmd_Function(() =>
|
||||
{
|
||||
selectedCards.ForEach(selectEffect);
|
||||
}));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user