mirror of https://github.com/axmolengine/axmol.git
17 lines
256 B
C++
17 lines
256 B
C++
|
#include "TG3.h"
|
||
|
#include "../AppDelegate.h"
|
||
|
|
||
|
Int32 TG3AppMain(const TUChar * pAppID, UInt32 nCmd, void * pCmdParam)
|
||
|
{
|
||
|
switch(nCmd)
|
||
|
{
|
||
|
case 0: // main entry
|
||
|
{
|
||
|
// run app
|
||
|
AppDelegate app;
|
||
|
app.Run();
|
||
|
}
|
||
|
}
|
||
|
return 1;
|
||
|
}
|