예제 #1
0
파일: Pong.cpp 프로젝트: catlin0123/Pong
/**************************************************************************//**
* @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); 
}