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