tunnel/windows/SalmonTemplate/Template/main.cpp

13 lines
218 B
C++
Raw Permalink Normal View History

2013-01-23 20:14:11 +00:00
#include "main.h"
#include "main_code.h"
2013-02-08 06:23:20 +00:00
2013-01-23 20:14:11 +00:00
int APIENTRY WinMain(HINSTANCE hCurrentInst, HINSTANCE hPreviousInst,
LPSTR lpszCmdLine, int nCmdShow)
{
2013-02-04 07:44:34 +00:00
2013-02-08 06:23:20 +00:00
OuterMainLoop<TMyApplication>(320, 480);
2013-01-23 20:14:11 +00:00
2013-02-08 06:23:20 +00:00
return 0;
2013-01-23 20:14:11 +00:00
}