This commit is contained in:
SoulliesOfficial
2025-10-24 09:11:22 -04:00
parent 61a397dd4c
commit 76157e3cb1
329 changed files with 8609 additions and 4549 deletions

View File

@@ -22,7 +22,7 @@ namespace Continentis.MainGame.Commands
private readonly List<CardInstance> customDrawCards;
public Cmd_DrawCards(DeckSubmodule deck, int drawCount, float interval)
public Cmd_DrawCards(DeckSubmodule deck, int drawCount, float interval = 0.1f)
{
this.isCustomDraw = false;
this.deck = deck;
@@ -31,7 +31,7 @@ namespace Continentis.MainGame.Commands
this.customDrawCards = null;
}
public Cmd_DrawCards(DeckSubmodule deck, List<CardInstance> customDrawCards, float interval)
public Cmd_DrawCards(DeckSubmodule deck, List<CardInstance> customDrawCards, float interval = 0.1f)
{
this.isCustomDraw = true;
this.deck = deck;