mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
16 lines
355 B
C++
16 lines
355 B
C++
#include "main.h"
|
|
#include "AppDelegate.h"
|
|
#include "cocos2d.h"
|
|
|
|
int wWinMain(HINSTANCE hInstance,
|
|
HINSTANCE hPrevInstance,
|
|
LPTSTR lpCmdLine,
|
|
int nCmdShow) {
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
|
|
|
// create the application instance
|
|
AppDelegate app;
|
|
return cocos2d::Application::getInstance()->run();
|
|
}
|