NBTExplorer/SubstrateCS/Source/Entities/EntityBoat.cs

52 lines
1 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace Substrate.Entities
{
2011-06-30 04:41:29 +00:00
using Substrate.Nbt;
2011-08-14 19:34:49 +00:00
public class EntityBoat : TypedEntity
{
2011-08-14 19:34:49 +00:00
public static readonly SchemaNodeCompound BoatSchema = TypedEntity.Schema.MergeInto(new SchemaNodeCompound("")
{
new SchemaNodeString("id", "Boat"),
});
public EntityBoat ()
: base("Boat")
{
}
protected EntityBoat (string id)
: base(id)
{
}
2011-08-14 19:34:49 +00:00
public EntityBoat (TypedEntity e)
: base(e)
{
}
#region INBTObject<Entity> Members
public override bool ValidateTree (TagNode tree)
{
2011-06-30 04:57:18 +00:00
return new NbtVerifier(tree, BoatSchema).Verify();
}
#endregion
#region ICopyable<Entity> Members
2011-08-14 19:34:49 +00:00
public override TypedEntity Copy ()
{
return new EntityBoat(this);
}
#endregion
}
}