함수를 일정시간 쉬었다가 반복하게 하려면?
로다
srand((time(0)));
static int line=rand()%3;
static int type=rand()%2;if(line==0)
{
TimeX=270;
if(type==0)
{
BitBlt(hdc, TimeX, TimeY, 128, 128, oMemDC, 0, 0, SRCCOPY); //돌멩이 장애물 출력
}
if(type==1)
{
BitBlt(hdc, TimeX, TimeY, 128, 128, wMemDC, 0, 0, SRCCOPY); //웅덩이 장애물 출력
}
}
if(line==1)
{
TimeX=600;
if(type==0)
{
BitBlt(hdc, TimeX, TimeY, 128, 128, oMemDC, 0, 0, SRCCOPY);
}
if(type==1)
{
BitBlt(hdc, TimeX, TimeY, 128, 128, wMemDC, 0, 0, SRCCOPY);
}
}if(line==2)
{
TimeX=930;
if(type==0)
{
BitBlt(hdc, TimeX, TimeY, 128, 128, oMemDC, 0, 0, SRCCOPY);
}
if(type==1)
{
BitBlt(hdc, TimeX, TimeY, 128, 128, wMemDC, 0, 0, SRCCOPY);
}
}게임에서 장애물이 떨어지도록 만드는데요장애물이 한개만 떨어지고 끝나는데일정 시간마다 반복해서 떨어지게 하려면 어떻게 해야하나요?while(1) 썼더니 응답없음 뜨네요...