21 lines
372 B
C++
21 lines
372 B
C++
#include "jUnit.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
init();
|
|
SDL_Event sdlEvent;
|
|
bool exit = false;
|
|
while (!exit)
|
|
{
|
|
while (SDL_PollEvent(&sdlEvent))
|
|
{
|
|
if (sdlEvent.type == SDL_QUIT)
|
|
{
|
|
exit = true;
|
|
break;
|
|
}
|
|
update();
|
|
jFlip();
|
|
}
|
|
}
|
|
} |