Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 9, 2013, 9:26:46 PM (12 years ago)
Author:
landauf
Message:

BaseObject now requires a Context instead of a creator (BaseObject*) in its constructor.
Namespace, Level, and Scene inherit from Context

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core6/src/orxonox/collisionshapes/CollisionShape.cc

    r8858 r9629  
    4949        Constructor. Registers and initializes the object.
    5050    */
    51     CollisionShape::CollisionShape(BaseObject* creator)
    52         : BaseObject(creator)
    53         , Synchronisable(creator)
     51    CollisionShape::CollisionShape(Context* context)
     52        : BaseObject(context)
     53        , Synchronisable(context)
    5454    {
    5555        RegisterObject(CollisionShape);
Note: See TracChangeset for help on using the changeset viewer.