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