Browse Source

doc: hint that these function actually take some parameters.

This looked like valid code, which is not.
pull/51/head
Vladimír Vondruš 12 years ago
parent
commit
b1be448453
  1. 4
      doc/scenegraph.dox

4
doc/scenegraph.dox

@ -165,10 +165,10 @@ class Bomb: public Object3D, SceneGraph::Drawable3D, SceneGraph::Animable3D {
protected:
// drawing implementation for Drawable feature
void draw() override;
void draw(...) override;
// animation step for Animable feature
void animationStep() override;
void animationStep(...) override;
};
@endcode

Loading…
Cancel
Save