axmol/template/multi-platform-cpp/proj.linux/main.cpp

18 lines
336 B
C++
Raw Normal View History

2013-09-20 22:23:13 +08:00
#include "../Classes/AppDelegate.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("Cocos2d-x Game",900,640);
2013-09-20 22:23:13 +08:00
return Application::getInstance()->run();
}