mirror of https://github.com/axmolengine/axmol.git
11 lines
193 B
C++
11 lines
193 B
C++
|
#include "../Classes/AppDelegate.h"
|
||
|
|
||
|
USING_NS_CC;
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
// create the application instance
|
||
|
AppDelegate app;
|
||
|
return Application::getInstance()->run();
|
||
|
}
|