This commit is contained in:
Charles 2001-05-17 18:18:43 +00:00
parent 0227eecbe2
commit 420c3e5796
4 changed files with 32 additions and 0 deletions

View file

@ -193,4 +193,19 @@ void CNpcJellyfishPlatform::render()
}
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
const CRECT *CNpcJellyfishPlatform::getThinkBBox()
{
CRECT objThinkBox = getCollisionArea();
sBBox &thinkBBox = CThingManager::getThinkBBox();
objThinkBox.x1 = thinkBBox.XMin;
objThinkBox.x2 = thinkBBox.XMax;
objThinkBox.y1 = thinkBBox.YMin;
objThinkBox.y2 = thinkBBox.YMax;
return &objThinkBox;
}