2013-02-19 15:38:30 +08:00
|
|
|
#include "../Classes/AppDelegate.h"
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "CCEGLView.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
2013-03-09 02:00:21 +08:00
|
|
|
{
|
2013-02-19 15:38:30 +08:00
|
|
|
// create the application instance
|
|
|
|
AppDelegate app;
|
2013-07-12 13:11:21 +08:00
|
|
|
EGLView* eglView = EGLView::getInstance();
|
2013-02-19 15:38:30 +08:00
|
|
|
eglView->setFrameSize(800, 480);
|
2013-07-15 16:24:42 +08:00
|
|
|
return Application::getInstance()->run();
|
2013-02-19 15:38:30 +08:00
|
|
|
}
|