diff options
| author | 2016-02-04 17:58:00 +0100 | |
|---|---|---|
| committer | 2016-02-04 17:58:00 +0100 | |
| commit | c671d21b54d43dbd6112f3ab50fc6ebd63dc4aef (patch) | |
| tree | 34ad9a7a84e0e71cb45f8b381eccae431ca39d25 /die.cpp | |
| parent | c796cef9dbbf48dcaf21dc4f4ea62db2ba4fe629 (diff) | |
| download | OneRoll-c671d21b54d43dbd6112f3ab50fc6ebd63dc4aef.tar.gz OneRoll-c671d21b54d43dbd6112f3ab50fc6ebd63dc4aef.zip | |
Add Management of Color
Diffstat (limited to 'die.cpp')
| -rw-r--r-- | die.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -149,3 +149,13 @@ void Die::setBase(qint64 base) { m_base = base; } +QString Die::getColor() const +{ + return m_color; +} + +void Die::setColor(const QString &color) +{ + m_color = color; +} + |