forked from mirrors/NBTExplorer
19 lines
425 B
C#
19 lines
425 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using NBTExplorer.Model;
|
|||
|
|
|||
|
namespace NBTUtil.Ops
|
|||
|
{
|
|||
|
abstract class ConsoleOperation
|
|||
|
{
|
|||
|
public virtual bool OptionsValid (ConsoleOptions options)
|
|||
|
{
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
public abstract bool CanProcess (DataNode dataNode);
|
|||
|
public abstract bool Process (DataNode dataNode, ConsoleOptions options);
|
|||
|
}
|
|||
|
}
|