2013-04-04 09:29:15 +08:00
|
|
|
#include "../Classes/AppDelegate.h"
|
|
|
|
#include "cocos2d.h"
|
|
|
|
|
|
|
|
#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;
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
EGLView* eglView = EGLView::sharedOpenGLView();
|
2013-04-04 09:29:15 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
return Application::sharedApplication()->run();
|
2013-04-04 09:29:15 +08:00
|
|
|
}
|