mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
Modularize and Doxygen decklist.cpp (#6099)
This commit is contained in:
parent
da52d677c7
commit
2eba126ed7
36 changed files with 1494 additions and 698 deletions
8
common/deck_list_card_node.cpp
Normal file
8
common/deck_list_card_node.cpp
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#include "deck_list_card_node.h"
|
||||
|
||||
DecklistCardNode::DecklistCardNode(DecklistCardNode *other, InnerDecklistNode *_parent)
|
||||
: AbstractDecklistCardNode(_parent), name(other->getName()), number(other->getNumber()),
|
||||
cardSetShortName(other->getCardSetShortName()), cardSetNumber(other->getCardCollectorNumber()),
|
||||
cardProviderId(other->getCardProviderId())
|
||||
{
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue