int total = 0;
void InitPre()
{
EE_INIT();
D.mode(1024, 720);
}
bool Init()
{
//LogConsole();
D.sync(false);
return true;
}
/******************************************************************************/
void Shut()
{
}
/******************************************************************************/
bool Update()
{
if(Kb.bp(KB_ESC))return false;
for(int i=0; i<1; ++i) LogN(S + total++);
return true;
}
/******************************************************************************/
void Draw()
{
D.clear(BLACK);
D.text(Vec2(0, 0), S+"Total: " + total);
D.text(Vec2(0, -.1), S+"fps: " + Time.fps());
}
/**********************************w********************************************/