NBTExplorer/Substrate/SubstrateCS/Source/Entities/EntityCow.cs
2011-04-06 19:41:57 +00:00

46 lines
929 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Substrate.Map.Entities
{
using Substrate.Map.NBT;
public class EntityCow : EntityMob
{
public static readonly NBTCompoundNode CowSchema = MobSchema.MergeInto(new NBTCompoundNode("")
{
new NBTStringNode("id", "Cow"),
});
public EntityCow ()
: base("Cow")
{
}
public EntityCow (Entity e)
: base(e)
{
}
#region INBTObject<Entity> Members
public override bool ValidateTree (NBT_Value tree)
{
return new NBTVerifier(tree, CowSchema).Verify();
}
#endregion
#region ICopyable<Entity> Members
public override Entity Copy ()
{
return new EntityCow(this);
}
#endregion
}
}