mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +08:00
15 lines
262 B
C++
15 lines
262 B
C++
#include "../Classes/AppDelegate.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string>
|
|
#include <unistd.h>
|
|
|
|
USING_NS_CC;
|
|
|
|
int main(int argc, char **argv) {
|
|
// create the application instance
|
|
AppDelegate app;
|
|
return Application::getInstance()->run();
|
|
}
|