mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-09 17:36:25 +00:00
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);
|
|
}
|
|
}
|
|
}
|