axmol/templates/cpp-template-default/proj.linux/main.cpp

16 lines
271 B
C++
Raw Normal View History

#include "../Classes/AppDelegate.h"
2013-09-20 22:23:13 +08:00
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string>
USING_NS_CC;
int main(int argc, char **argv)
{
// create the application instance
AppDelegate app;
return Application::getInstance()->run();
}