Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 27, 2005, 7:14:55 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/physics: merged the trunk back to the physics-branche
merged with command:
svn merge -r 4301:HEAD trunk/ branches/physics/
little conflict in particle-system resolved easily

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/physics/src/proto/proto_class.cc

    r4178 r4332  
    2727ProtoClass::ProtoClass ()
    2828{
    29    this->setClassName ("ProtoClass");
     29   this->setClassID(CL_PROTO_ID, "ProtoClass");
     30
     31   /* If you make a new class, what is most probably the case when you write this file
     32      don't forget to:
     33       1. Add the new file new_class.cc to the ./src/Makefile.am
     34       2. Add the class identifier to ./src/class_list.h eg. CL_NEW_CLASS
     35
     36      Advanced Topics:
     37      - if you want to let your object be managed via the ObjectManager make sure to read
     38        the object_manager.h header comments. You will use this most certanly only if you
     39        make many objects of your class, like a weapon bullet.
     40   */
    3041}
    3142
Note: See TracChangeset for help on using the changeset viewer.