Removed unused variable, added some documentation.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8758 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2011-05-29 23:04:00 +00:00
parent 4ac907f95b
commit 9bc617bede

View File

@@ -28,15 +28,19 @@ namespace irr
}
using namespace irr;
#include "utils/no_copy.hpp"
#include "utils/vec3.hpp"
class XMLNode;
/**
* \ingroup tracks
*/
class TrackObject : public scene::IAnimationEndCallBack
* \ingroup tracks
* This is a base object for any separate object on the track, which
* might also have a skeletal animation. This is used by objects that
* have an IPO animation, as well as physical objects.
*/
class TrackObject : public scene::IAnimationEndCallBack, public NoCopy
{
//public:
// The different type of track objects: physical objects, graphical
@@ -48,9 +52,6 @@ private:
/** True if the object is currently being displayed. */
bool m_enabled;
/** >0 if it is active for a timer based object. */
float m_timer;
/** True if it is a looped animation. */
bool m_is_looped;