optimization

This commit is contained in:
Vladislav Khorev 2013-02-06 20:58:07 +00:00
parent d412a88f20
commit 1c9300c1ba

View File

@ -5,12 +5,26 @@
int APIENTRY WinMain(HINSTANCE hCurrentInst, HINSTANCE hPreviousInst,
LPSTR lpszCmdLine, int nCmdShow)
{
//Create application
TMyApplication Application;
Application.Width = 480;
Application.Height = 320;
int width = 480;
int height = 320;
//Start application
return MainLoop(Application);
if (CreateEngine(width, height))
{
//MyApplication scope
{
TMyApplication Application;
Application.OuterInit(width, height, width, height);
MainLoop(&Application);
Application.OuterDeinit();
}
DestroyEngine();
}
return 0;
}