Changeset 4746 in orxonox.OLD for orxonox/trunk/src/util/animation/animation.h
- Timestamp:
- Jul 1, 2005, 12:48:48 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/animation/animation.h
r4597 r4746 75 75 { 76 76 public: 77 virtual ~Animation( void);78 void doNotHandle( void);77 virtual ~Animation(); 78 void doNotHandle(); 79 79 80 80 void setInfinity(ANIM_INFINITY postInfinity = ANIM_INF_CONSTANT); … … 92 92 93 93 /** \returns the BaseObject, this animation operates on */ 94 BaseObject* getBaseObject( void) const { return this->baseObject; };94 BaseObject* getBaseObject() const { return this->baseObject; }; 95 95 96 96 /** \returns if the Animation should be deleted */ 97 inline bool ifDelete( void) { return bDelete; };97 inline bool ifDelete() { return bDelete; }; 98 98 99 99 protected: 100 Animation( void);100 Animation(); 101 101 102 void handleInfinity( void);102 void handleInfinity(); 103 103 104 104 protected:
Note: See TracChangeset
for help on using the changeset viewer.