diff options
| -rw-r--r-- | diceresult.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/diceresult.cpp b/diceresult.cpp index 6d84ce1..8fcc5b3 100644 --- a/diceresult.cpp +++ b/diceresult.cpp @@ -17,3 +17,11 @@ void DiceResult::setResultList(QList<Die> list) m_diceValues.clear(); m_diceValues << list; } +bool DiceResult::isScalar() const +{ + return false; +} +qint64 DiceResult::getScalar() +{ + return 0; +} |