mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-09 17:44:01 -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;
|
class DeckListModel;
|
||||||
|
|
||||||
|
struct DeckListStatisticsAnalyzerConfig
|
||||||
|
{
|
||||||
|
bool computeManaBase = true;
|
||||||
|
bool computeManaCurve = true;
|
||||||
|
bool computeDevotion = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
class DeckListStatisticsAnalyzer : public QObject
|
class DeckListStatisticsAnalyzer : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
struct DeckListStatisticsAnalyzerConfig
|
|
||||||
{
|
|
||||||
bool computeManaBase = true;
|
|
||||||
bool computeManaCurve = true;
|
|
||||||
bool computeDevotion = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
explicit DeckListStatisticsAnalyzer(QObject *parent,
|
explicit DeckListStatisticsAnalyzer(QObject *parent,
|
||||||
DeckListModel *model,
|
DeckListModel *model,
|
||||||
DeckListStatisticsAnalyzerConfig cfg = DeckListStatisticsAnalyzerConfig());
|
DeckListStatisticsAnalyzerConfig cfg = DeckListStatisticsAnalyzerConfig());
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue