diff options
| author | 2014-01-06 12:21:52 +0100 | |
|---|---|---|
| committer | 2014-01-06 12:21:52 +0100 | |
| commit | 2370150183601a05986b82cec38078eaeef01f12 (patch) | |
| tree | c16b97403cf8ec7c0187f0b1ed06aac83511e228 /diceresult.cpp | |
| parent | 0b4909df2372537969e96c4003149cecd2fb911d (diff) | |
| download | OneRoll-2370150183601a05986b82cec38078eaeef01f12.tar.gz OneRoll-2370150183601a05986b82cec38078eaeef01f12.zip | |
Update diceresult.cpp
New API for result
Diffstat (limited to 'diceresult.cpp')
| -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; +} |