Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4744 in orxonox.OLD for orxonox/trunk/src/proto/proto_class.cc


Ignore:
Timestamp:
Jun 30, 2005, 4:53:14 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: classList.h some definitions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/proto/proto_class.cc

    r4320 r4744  
    1 /* 
     1/*
    22   orxonox - the future of 3D-vertical-scrollers
    33
     
    2525   \todo this constructor is not jet implemented - do it
    2626*/
    27 ProtoClass::ProtoClass () 
     27ProtoClass::ProtoClass ()
    2828{
    29    this->setClassID(CL_PROTO_ID, "ProtoClass"); 
     29   this->setClassID(CL_PROTO_ID, "ProtoClass");
    3030
    3131   /* If you make a new class, what is most probably the case when you write this file
    3232      don't forget to:
    3333       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
     34       2. Add the class identifier to ./src/class_id.h eg. CL_NEW_CLASS
    3535
    3636      Advanced Topics:
    3737      - if you want to let your object be managed via the ObjectManager make sure to read
    3838        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.
     39        make many objects of your class, like a weapon bullet.
    4040   */
    4141}
     
    4646
    4747*/
    48 ProtoClass::~ProtoClass () 
     48ProtoClass::~ProtoClass ()
    4949{
    5050  // delete what has to be deleted here
Note: See TracChangeset for help on using the changeset viewer.