diff options
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/emotedb.cpp | 9 | ||||
-rw-r--r-- | src/resources/emotedb.h | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/resources/emotedb.cpp b/src/resources/emotedb.cpp index 7e923c034..0492cb848 100644 --- a/src/resources/emotedb.cpp +++ b/src/resources/emotedb.cpp @@ -237,6 +237,15 @@ const AnimatedSprite *EmoteDB::getAnimation2(int id, const bool allowNull) return getAnimation(id, allowNull); } +AnimatedSprite *EmoteDB::getClone(int id, const bool allowNull) +{ + const AnimatedSprite *const sprite = getAnimation2(id, allowNull); + if (sprite) + return AnimatedSprite::clone(sprite); + + return nullptr; +} + const EmoteSprite *EmoteDB::getSprite(const int id, const bool allowNull) { const EmoteInfo *const info = get(id, allowNull); diff --git a/src/resources/emotedb.h b/src/resources/emotedb.h index c747042d5..3e4cd7789 100644 --- a/src/resources/emotedb.h +++ b/src/resources/emotedb.h @@ -77,6 +77,8 @@ namespace EmoteDB const bool allowNull = false) A_WARN_UNUSED; + AnimatedSprite *getClone(int id, const bool allowNull); + const EmoteSprite *getSprite(const int id, const bool allowNull = false) A_WARN_UNUSED; |