axmol/samples/HelloCpp/proj.linux/main.cpp

17 lines
447 B
C++
Raw Normal View History

2012-08-02 13:02:59 +08:00
#include "main.h"
#include "../Classes/AppDelegate.h"
#include "cocos2d.h"
#include "CCEGLView.h"
USING_NS_CC;
int main(int argc, char **argv)
{
2012-08-02 13:02:59 +08:00
// create the application instance
AppDelegate app;
CCApplication::sharedApplication().setResourceRootPath("../Resources/");
CCEGLView& eglView = CCEGLView::sharedOpenGLView();
eglView.setFrameSize(960, 640);
2012-08-02 13:02:59 +08:00
return CCApplication::sharedApplication().run();
}