Exemplo n.º 1
0
/**************************************************************************//**
* @author Caitlin Taggart
*
* @par Description:
* The action a ball is to take when it collides with a non-scoring wall
*
* @param[in] col - the type of collision that occurred
*
*****************************************************************************/
void BallCollideWithWall(CollisionTypeEnum col)
{
    BALL.BounceOffWall(col); 
}