[Refactor] Pass around LoadedDeck instead of DeckLoader

This commit is contained in:
RickyRister 2025-12-03 23:53:38 -08:00
parent d47dc35885
commit c0f977d2c1
44 changed files with 253 additions and 264 deletions

View file

@ -30,8 +30,8 @@ struct LoadedDeck
bool isEmpty() const;
};
DeckList deckList; ///< The decklist itself
LoadInfo lastLoadInfo; ///< info about where the deck was loaded from
DeckList deckList; ///< The decklist itself
LoadInfo lastLoadInfo = {}; ///< info about where the deck was loaded from
bool isEmpty() const;
};