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