Emit more signals when data is changed and add utility functions to interact with a decklist in the context of cardinfoptrs. (#5815)

Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
This commit is contained in:
BruebachL 2025-04-09 18:08:54 +02:00 committed by GitHub
parent 56bbd8a172
commit 53e9a91dc6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 94 additions and 1 deletions

View file

@ -110,6 +110,9 @@ public:
return deckList;
}
void setDeckList(DeckLoader *_deck);
QList<CardInfoPtr> getCardsAsCardInfoPtrs() const;
QList<CardInfoPtr> getCardsAsCardInfoPtrsForZone(QString zoneName) const;
QList<QString> *getZones() const;
private:
DeckLoader *deckList;