Changeset 6776 in orxonox.OLD for branches/network
- Timestamp:
- Jan 26, 2006, 4:27:32 PM (19 years ago)
- Location:
- branches/network/src/lib/graphics/effects
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/graphics/effects/graphics_effect.cc
r6772 r6776 72 72 bool GraphicsEffect::init() 73 73 {} 74 75 76 77 /** 78 * draws the effect, if needed 79 */ 80 void GraphicsEffect::draw() const 81 {} -
branches/network/src/lib/graphics/effects/graphics_effect.h
r6772 r6776 25 25 virtual bool deactivate() = 0; 26 26 27 inline bool isActivated() { return this->bActivated; } 27 virtual bool draw() const; 28 29 inline bool isActivated() const { return this->bActivated; } 28 30 29 31
Note: See TracChangeset
for help on using the changeset viewer.