Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3497 in orxonox.OLD


Ignore:
Timestamp:
Mar 11, 2005, 10:27:30 AM (19 years ago)
Author:
chris
Message:

orxonox/branches/levelloader: Minor typing issue fixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/src/levelfactory.cc

    r3496 r3497  
    200200   \brief used to run through the Q to find a factory that can load the specified object
    201201*/
    202 BaseObject* ObjectFactory::loadObject( char* name, void* data)
     202BaseObject* ObjectFactory::loadObject( char* name, LoadParameters* data)
    203203{
    204204        if( !strcmp( name, classname)) return fabricateObject( data);
     
    210210   \brief generates the associated object from data
    211211*/
    212 BaseObject* ObjectFactory::fabricateObject( void* data)
     212BaseObject* ObjectFactory::fabricateObject( LoadParameters* data)
    213213{
    214214        return NULL;
Note: See TracChangeset for help on using the changeset viewer.