mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-12 09:04:53 -07:00
14 lines
No EOL
555 B
C++
14 lines
No EOL
555 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)
|
|
: name(_name), attachType(_attachType), isCreateAllExclusion(_isCreateAllExclusion),
|
|
isVariableCount(_isVariableCount), defaultCount(_defaultCount), isPersistent(_isPersistent)
|
|
{
|
|
} |