mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
12 lines
319 B
C++
12 lines
319 B
C++
#include "main.h"
|
|
#include "../example/AppDelegate.h"
|
|
|
|
USING_NS_CC;
|
|
|
|
int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) {
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
|
AppDelegate app;
|
|
return CCApplication::sharedApplication()->run();
|
|
}
|