2011-02-18 10:44:49 +08:00
|
|
|
// Application main file.
|
|
|
|
|
|
|
|
// Original file name: cocosTemplateEntry.cpp
|
|
|
|
// Generated by TOPS Builder:Project wizard,Date:2010-09-27
|
|
|
|
|
2011-03-09 17:28:35 +08:00
|
|
|
// wophone header
|
2010-11-12 16:25:14 +08:00
|
|
|
#include "TG3.h"
|
|
|
|
|
2011-02-18 10:44:49 +08:00
|
|
|
// game
|
2011-03-02 17:45:04 +08:00
|
|
|
#include "../AppDelegate.h"
|
2011-01-19 18:02:35 +08:00
|
|
|
|
|
|
|
|
2011-02-18 10:44:49 +08:00
|
|
|
Int32 TG3AppMain(const TUChar * pAppID, UInt32 nCmd, void * pCmdParam)
|
|
|
|
{
|
2011-03-02 17:45:04 +08:00
|
|
|
AppDelegate app;
|
2011-03-07 18:20:48 +08:00
|
|
|
cocos2d::CCApplication::sharedApplication().Run();
|
2011-01-19 18:02:35 +08:00
|
|
|
|
2010-11-12 16:25:14 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2011-02-18 10:44:49 +08:00
|
|
|
|
|
|
|
|