mirror of https://github.com/axmolengine/axmol.git
12 lines
213 B
C++
12 lines
213 B
C++
|
#include "main.h"
|
||
|
|
||
|
#include "AppDelegate.h"
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
|
||
|
// create the application instance
|
||
|
AppDelegate app;
|
||
|
|
||
|
return cocos2d::CCApplication::sharedApplication().run();
|
||
|
}
|