15 lines
304 B
C++
15 lines
304 B
C++
|
#include "main.h"
|
||
|
|
||
|
|
||
|
int APIENTRY WinMain(HINSTANCE hCurrentInst, HINSTANCE hPreviousInst,
|
||
|
LPSTR lpszCmdLine, int nCmdShow)
|
||
|
{
|
||
|
//Create application
|
||
|
TAndroidApplication Application;
|
||
|
|
||
|
Application.Width = 800;
|
||
|
Application.Height = 480;
|
||
|
|
||
|
//Start application
|
||
|
return MainLoop(Application);
|
||
|
}
|