forked from mirrors/NBTExplorer
17 lines
301 B
C#
17 lines
301 B
C#
|
using Substrate.Nbt;
|
|||
|
|
|||
|
namespace NBTExplorer.Model
|
|||
|
{
|
|||
|
public class TagIntDataNode : TagDataNode
|
|||
|
{
|
|||
|
public TagIntDataNode (TagNodeInt tag)
|
|||
|
: base(tag)
|
|||
|
{ }
|
|||
|
|
|||
|
public override bool EditNode ()
|
|||
|
{
|
|||
|
return EditScalarValue(Tag);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|