mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-09 09:33:57 -07:00
[VDE] Move struct up to not confuse compiler.
This commit is contained in:
parent
8a683d839e
commit
c6d9c613ce
1 changed files with 8 additions and 7 deletions
|
|
@ -9,18 +9,19 @@
|
|||
|
||||
class DeckListModel;
|
||||
|
||||
struct DeckListStatisticsAnalyzerConfig
|
||||
{
|
||||
bool computeManaBase = true;
|
||||
bool computeManaCurve = true;
|
||||
bool computeDevotion = true;
|
||||
};
|
||||
|
||||
|
||||
class DeckListStatisticsAnalyzer : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
struct DeckListStatisticsAnalyzerConfig
|
||||
{
|
||||
bool computeManaBase = true;
|
||||
bool computeManaCurve = true;
|
||||
bool computeDevotion = true;
|
||||
};
|
||||
|
||||
explicit DeckListStatisticsAnalyzer(QObject *parent,
|
||||
DeckListModel *model,
|
||||
DeckListStatisticsAnalyzerConfig cfg = DeckListStatisticsAnalyzerConfig());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue