summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-09-14 01:46:13 +0300
committerAndrei Karas <akaras@inbox.ru>2011-09-14 01:52:42 +0300
commitc0a5fffb45f849e224750f27fa8c3be5ac447ad6 (patch)
tree1fcac5e9836e119970acae9c5702ac83f40a935f /src/resources
parent1c62988a9e7ed1038250a2d044889eda046500c5 (diff)
downloadplus-c0a5fffb45f849e224750f27fa8c3be5ac447ad6.tar.gz
plus-c0a5fffb45f849e224750f27fa8c3be5ac447ad6.tar.bz2
plus-c0a5fffb45f849e224750f27fa8c3be5ac447ad6.tar.xz
plus-c0a5fffb45f849e224750f27fa8c3be5ac447ad6.zip
Add more checks.
Fix error in event.cpp from last commits. Improve party members sorting.
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/animation.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/resources/animation.h b/src/resources/animation.h
index 0c6f45681..19b17eb54 100644
--- a/src/resources/animation.h
+++ b/src/resources/animation.h
@@ -85,6 +85,12 @@ class Animation
{ return static_cast<unsigned>(mFrames.size()); }
/**
+ * Check for empty animation.
+ */
+ bool empty() const
+ { return mFrames.empty(); }
+
+ /**
* Returns the duration of this animation.
*/
int getDuration() const