Cockatrice 2026-01-14-Development-2.11.0-beta.46
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
edhrec_deck_api_response.h
Go to the documentation of this file.
1
6
7#ifndef EDHREC_DECK_API_RESPONSE_H
8#define EDHREC_DECK_API_RESPONSE_H
9
11
13{
14public:
15 // Constructor
17
18 // Parse deck-related data from JSON
19 void fromJson(const QJsonArray &json);
20
21 // Debug method for logging
22 void debugPrint() const;
23
25};
26
27#endif // EDHREC_DECK_API_RESPONSE_H
Represents a complete deck, including metadata, zones, cards, and sideboard plans.
Definition deck_list.h:63
DeckList deck
Definition edhrec_deck_api_response.h:24
EdhrecDeckApiResponse()=default
void debugPrint() const
Definition edhrec_deck_api_response.cpp:21
void fromJson(const QJsonArray &json)
Definition edhrec_deck_api_response.cpp:10
TODO: Document this.