This commit is contained in:
Charles 2001-08-08 14:19:54 +00:00
parent 54d233ced0
commit 49a5101217
4 changed files with 14 additions and 1 deletions

View file

@ -69,7 +69,19 @@ void CGaryStopTrigger::init()
CTrigger::init();
m_dropped = false;
Pos.vx += 8;
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CGaryStopTrigger::setPositionAndSize(int _x,int _y,int _w,int _h)
{
Pos.vx=_x+(_w/2) - 8;
Pos.vy=_y+(_h/2);
setCollisionSize(4,_h);
}
/*----------------------------------------------------------------------