2012-09-26 20:51:41 +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)
|
2013-03-09 02:00:21 +08:00
|
|
|
{
|
2012-09-26 20:51:41 +08:00
|
|
|
// create the application instance
|
|
|
|
AppDelegate app;
|
2013-09-18 17:00:21 +08:00
|
|
|
EGLView eglView;
|
2013-09-18 18:26:03 +08:00
|
|
|
eglView.init("HelloLua",900,640);
|
2013-07-15 16:24:42 +08:00
|
|
|
return Application::getInstance()->run();
|
2012-09-26 20:51:41 +08:00
|
|
|
}
|