- exported all relevant functions from sector_t.

Please note that currently most of these have little use, they are for future feature support.
This commit is contained in:
Christoph Oelckers 2017-01-08 00:50:40 +01:00
commit 3beed216dd
6 changed files with 813 additions and 28 deletions

View file

@ -1589,23 +1589,3 @@ double FrictionToMoveFactor(double friction)
return movefactor;
}
//
// phares 3/12/98: End of friction effects
//
////////////////////////////////////////////////////////////////////////////
void sector_t::AdjustFloorClip () const
{
msecnode_t *node;
for (node = touching_thinglist; node; node = node->m_snext)
{
if (node->m_thing->flags2 & MF2_FLOORCLIP)
{
node->m_thing->AdjustFloorClip();
}
}
}