- 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:
parent
82adc5bf1e
commit
3beed216dd
6 changed files with 813 additions and 28 deletions
|
|
@ -86,6 +86,13 @@ bool sector_t::IsLinked(sector_t *other, bool ceiling) const
|
|||
return false;
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION(_Sector, isLinked)
|
||||
{
|
||||
PARAM_SELF_STRUCT_PROLOGUE(sector_t);
|
||||
PARAM_POINTER(other, sector_t);
|
||||
PARAM_BOOL(ceiling);
|
||||
ACTION_RETURN_BOOL(self->IsLinked(other, ceiling));
|
||||
}
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue