axmol/samples/Lua/HelloLua/proj.linux/main.cpp

19 lines
369 B
C++
Raw Normal View History

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