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