NBTExplorer/Substrate/SubstrateCS/Source/Entities/EntitySkeleton.cs
2011-08-14 19:34:49 +00:00

46 lines
978 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Substrate.Entities
{
using Substrate.Nbt;
public class EntitySkeleton : EntityMob
{
public static readonly SchemaNodeCompound SkeletonSchema = MobSchema.MergeInto(new SchemaNodeCompound("")
{
new SchemaNodeString("id", "Skeleton"),
});
public EntitySkeleton ()
: base("Skeleton")
{
}
public EntitySkeleton (TypedEntity e)
: base(e)
{
}
#region INBTObject<Entity> Members
public override bool ValidateTree (TagNode tree)
{
return new NbtVerifier(tree, SkeletonSchema).Verify();
}
#endregion
#region ICopyable<Entity> Members
public override TypedEntity Copy ()
{
return new EntitySkeleton(this);
}
#endregion
}
}