mirror of https://github.com/axmolengine/axmol.git
20 lines
272 B
C++
20 lines
272 B
C++
|
// Application main file.
|
||
|
|
||
|
#include "Main.h"
|
||
|
#include "../Classes/AppDelegate.h"
|
||
|
|
||
|
// Cocos2dx headers
|
||
|
#include "cocos2d.h"
|
||
|
|
||
|
// Marmalade headers
|
||
|
#include "IwGL.h"
|
||
|
|
||
|
USING_NS_CC;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
AppDelegate app;
|
||
|
|
||
|
return cocos2d::CCApplication::sharedApplication()->Run();
|
||
|
}
|