#include <gCycleMovement.h>
Public Member Functions | |
gMaxSpaceAheadHitInfoClearer (gMaxSpaceAheadHitInfo *&info) | |
~gMaxSpaceAheadHitInfoClearer () | |
Private Attributes | |
gMaxSpaceAheadHitInfo *& | info_ |
Definition at line 42 of file gCycleMovement.h.
gMaxSpaceAheadHitInfoClearer::gMaxSpaceAheadHitInfoClearer | ( | gMaxSpaceAheadHitInfo *& | info | ) |
gMaxSpaceAheadHitInfoClearer::~gMaxSpaceAheadHitInfoClearer | ( | ) |
Definition at line 1508 of file gCycleMovement.cpp.
References gMaxSpaceAheadHitInfo::edge, info_, NULL, and gMaxSpaceAheadHitInfo::playerWall.
01510 { 01511 gMaxSpaceAheadHitInfo * info = info_; 01512 if ( info ) 01513 { 01514 // we can't have the edges lingering around with possibly incomplete data 01515 info->edge = NULL; 01516 info->playerWall = NULL; 01517 }
gMaxSpaceAheadHitInfo* & gMaxSpaceAheadHitInfoClearer::info_ [private] |