13 lines
222 B
C#
13 lines
222 B
C#
using AssemblyRemapper.Commands;
|
|
|
|
namespace AssemblyRemapper;
|
|
|
|
public static class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var cmd = new CommandProcessor();
|
|
|
|
cmd.CommandLoop();
|
|
}
|
|
} |