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

46 lines
938 B
C#

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