axmol/samples/Cpp/SimpleGame/proj.linux/main.cpp

19 lines
353 B
C++
Raw Normal View History

#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;
2013-09-18 18:26:03 +08:00
eglView.init("SimpleGame",900,640);
return Application::getInstance()->run();
}