NBTExplorer/NBTUtil/Program.cs

16 lines
270 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace NBTUtil
{
class Program
{
static void Main (string[] args)
{
ConsoleRunner runner = new ConsoleRunner();
runner.Run(args);
}
}
}