Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 1, 2005, 12:48:48 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: changed (void) → ()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/particles/particle_system.cc

    r4732 r4746  
    8989  \brief initializes the ParticleSystem with default values
    9090*/
    91 void ParticleSystem::init(void)
     91void ParticleSystem::init()
    9292{
    9393  this->setClassID(CL_PARTICLE_SYSTEM, "ParticleSystem");
     
    367367 * \returns the count of Faces of this ParticleSystem
    368368 */
    369 unsigned int ParticleSystem::getFaceCount(void) const
     369unsigned int ParticleSystem::getFaceCount() const
    370370{
    371371  switch (this->particleType)
     
    389389   This is just the fastest Way to do this, but will most likely be changed in the future.
    390390 */
    391 void ParticleSystem::draw(void) const
     391void ParticleSystem::draw() const
    392392{
    393393  glPushAttrib(GL_ENABLE_BIT);
     
    581581   \brief outputs some nice debug information
    582582*/
    583 void ParticleSystem::debug(void) const
     583void ParticleSystem::debug() const
    584584{
    585585  PRINT(0)("  ParticleSystem %s, type: ", this->getName());
Note: See TracChangeset for help on using the changeset viewer.