forked from mirrors/NBTExplorer
15 lines
270 B
C#
15 lines
270 B
C#
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);
|
|
}
|
|
}
|
|
}
|