axmol/HelloWorld/marmalade/Main.cpp

17 lines
234 B
C++
Raw Normal View History

2011-12-08 18:15:20 +08:00
// Application main file.
#include "Main.h"
#include "AppDelegate.h"
int main()
{
AppDelegate* app;
int nRet = 0;
app = new AppDelegate;
nRet = cocos2d::CCApplication::sharedApplication().Run();;
delete app;
return nRet;
}