1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-18 16:10:26 +02:00
Beef/BeefTools/BeefPerf/src/Program.bf
2019-09-04 11:39:56 -07:00

24 lines
362 B
Beef

//
using System;
using System.Threading;
namespace BeefPerf
{
class Program
{
public static int32 Main(String[] args)
{
BPApp mApp = new BPApp();
mApp.ParseCommandLine(args);
if (!mApp.mShuttingDown)
{
mApp.Init();
mApp.Run();
mApp.Shutdown();
}
bool failed = mApp.mFailed;
delete mApp;
return failed ? 1 : 0;
}
}
}