forked from mirrors/NBTExplorer
13 lines
252 B
C#
13 lines
252 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace NBToolkit
|
|
{
|
|
public abstract class TKFilter
|
|
{
|
|
//public abstract void ApplyChunk (NBT_Tree root);
|
|
|
|
public abstract void Run ();
|
|
}
|
|
}
|