mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-16 20:17:45 -07:00
16 lines
632 B
C++
16 lines
632 B
C++
#include "card_relation.h"
|
|
|
|
#include "card_relation_type.h"
|
|
|
|
CardRelation::CardRelation(const QString &_name,
|
|
CardRelationType _attachType,
|
|
bool _isCreateAllExclusion,
|
|
bool _isVariableCount,
|
|
int _defaultCount,
|
|
bool _isPersistent,
|
|
bool _isFaceDown)
|
|
: name(_name), attachType(_attachType), isCreateAllExclusion(_isCreateAllExclusion),
|
|
isVariableCount(_isVariableCount), defaultCount(_defaultCount), isPersistent(_isPersistent),
|
|
isFaceDown(_isFaceDown)
|
|
{
|
|
}
|