From: Mikko Rasa Date: Sat, 8 Jun 2019 07:16:27 +0000 (+0300) Subject: Add getter for Animation::looping X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=d901696935a6bf9fdad6ac8abe65ffab79bd297d Add getter for Animation::looping --- diff --git a/source/animation.h b/source/animation.h index 7c277f43..011c8558 100644 --- a/source/animation.h +++ b/source/animation.h @@ -186,6 +186,7 @@ public: const Msp::Time::TimeDelta &get_duration() const; void set_looping(bool); + bool is_looping() const { return looping; } }; } // namespace GL