mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 23:36:00 +02:00
Moving BeefMem
This commit is contained in:
parent
b3487d733b
commit
65bf1915af
337 changed files with 0 additions and 4 deletions
22
BeefTools/MemProfiler/Program.bf
Normal file
22
BeefTools/MemProfiler/Program.bf
Normal file
|
@ -0,0 +1,22 @@
|
|||
using System;
|
||||
|
||||
namespace MemProfiler
|
||||
{
|
||||
class Program
|
||||
{
|
||||
public static int32 Main(String[] args)
|
||||
{
|
||||
String commandLine = scope String();
|
||||
commandLine.JoinInto(" ", args);
|
||||
|
||||
MPApp mApp = new MPApp();
|
||||
mApp.ParseCommandLine(commandLine);
|
||||
mApp.Init();
|
||||
mApp.Run();
|
||||
mApp.Shutdown();
|
||||
delete mApp;
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue