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

15 lines
425 B
C++
Raw Normal View History

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