genesis-3d_engine/Engine/buildingtools/idlcompiler/idlc.cc
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

29 lines
717 B
C++

//------------------------------------------------------------------------------
// idlc.cc
// (C) 2006 Radon Labs GmbH
//------------------------------------------------------------------------------
#include "stdneb.h"
#include "tools/idlcompiler/idlcompiler.h"
using namespace Tools;
using namespace Util;
//------------------------------------------------------------------------------
/**
*/
void __cdecl
main(int argc, const char** argv)
{
CommandLineArgs args(argc, argv);
IDLCompiler app;
app.SetCompanyName("Radon Labs GmbH");
app.SetAppTitle("Nebula3 IDL Compiler");
app.SetCmdLineArgs(args);
if (app.Open())
{
app.Run();
app.Close();
}
app.Exit();
}