salmon-wallpaper/windows/Template/main.cpp

30 lines
480 B
C++
Raw Permalink Normal View History

2013-02-10 15:24:11 +00:00
#include "main.h"
#include "main_code.h"
int APIENTRY WinMain(HINSTANCE hCurrentInst, HINSTANCE hPreviousInst,
LPSTR lpszCmdLine, int nCmdShow)
{
int width = 800;
int height = 480;
if (CreateEngine(width, height))
{
//MyApplication scope
{
TAndroidApplication Application;
Application.OuterInit(width, height, width, height);
MainLoop(&Application);
Application.OuterDeinit();
}
DestroyEngine();
}
return 0;
}