mirror of https://github.com/axmolengine/axmol.git
19 lines
351 B
C++
19 lines
351 B
C++
|
#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;
|
||
|
EGLView eglView;
|
||
|
eglView.init("HelloLua",900,640);
|
||
|
return Application::getInstance()->run();
|
||
|
}
|