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