Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 13, 2006, 10:44:37 AM (17 years ago)
Author:
patrick
Message:

mount point interaction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/mount_points/src/world_entities/mount_point.cc

    r10057 r10058  
    7676  this->toList(OM_GROUP_00);
    7777
    78   this->mount = NULL;
     78  this->_mount = NULL;
    7979}
    8080
     
    126126 */
    127127void MountPoint::mount(WorldEntity* entity)
    128 {}
     128{
     129  this->_mount = entity;
     130}
    129131
    130132
     
    133135 */
    134136void MountPoint::unmount()
    135 {}
     137{
     138  this->_mount = NULL;
     139}
     140
Note: See TracChangeset for help on using the changeset viewer.