0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 01:30:45 -05:00
2024-06-11 19:18:48 -04:00

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();
}
}