genesis-3d_engine/Engine/players/PhysX_Sample/simplegame.cpp
zhongdaohuan 6e8fbca745 genesis-3d engine version 1.3.
match the genesis editor version 1.3.0.653.
2014-05-05 14:50:33 +08:00

27 lines
474 B
C++

#include "stdneb.h"
#include "simplegameapplication.h"
#include "system/appentry.h"
ImplementNebulaApplication()
using namespace Sample;
//------------------------------------------------------------------------------
/**
*/
void
NebulaMain(const Util::CommandLineArgs& args)
{
SimpleGameApplication app;
app.SetCompanyName("Radon Labs GmbH");
app.SetAppTitle("Test Game");
app.SetCmdLineArgs(args);
if (app.Open())
{
app.Run();
app.Close();
}
app.Exit();
}